-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
39 lines (37 loc) · 1.42 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
36
37
38
39
from skbuild 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="larnd2supera",
version="0.0.1",
#cmake_source_dir='src/',
include_package_data=True,
#cmake_args=[
# #'-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON',
# '-DCMAKE_OSX_DEPLOYMENT_TARGET:STRING=10.9',
#],
author=['Kazuhiro Terao, Zach Hulcher, Andrew Morgan'],
description='Supera interface for larnd-sim data files',
license='MIT',
keywords='supera larnd-sim larcv larcv3 neutrinos deep learning lartpc_mlreco3d',
project_urls={
'Source Code': 'https://github.com/DeepLearnPhysics/larnd2supera'
},
url='https://github.com/DeepLearnPhysics/larnd2supera',
scripts=['bin/run_larnd2supera.py'],
packages=['larnd2supera','larnd2supera.pdg_data','larnd2supera.config_data'],
package_dir={'': 'python'},
package_data={'larnd2supera': ['pdg_data/pdg.npz','config_data/*.yaml']},
install_requires=[
'numpy',
'scikit-build',
'supera',
'edep2supera',
],
long_description=long_description,
long_description_content_type='text/markdown',
)