-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
35 lines (33 loc) · 1.29 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup # This line replaces 'from setuptools import setup'
import argparse
import io,os,sys
this_directory = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="flow2supera",
version="4.0.0",
include_package_data=True,
author=['Kazuhiro Terao, Zach Hulcher, Andrew Mogan, Sindhujha Kumaran'],
description='Supera interface for ndlar_flow data files',
license='MIT',
keywords='supera larnd-sim larcv larcv3 neutrinos deep learning lartpc_mlreco3d ndlar_flow h5flow',
project_urls={
'Source Code': 'https://github.com/DeepLearnPhysics/flow2supera'
},
url='https://github.com/DeepLearnPhysics/flow2supera',
scripts=['bin/run_flow2supera.py'],
packages=['flow2supera','flow2supera.config_data'],
package_dir={'': 'src'},
package_data={'flow2supera': ['config_data/*.yaml']},
install_requires=[
'numpy',
#'scikit-build',
'supera',
#'edep2supera',
'h5flow',
],
long_description=long_description,
long_description_content_type='text/markdown',
)