-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.08 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.08 KB
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
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="icarus_signalproc",
version="0.1.0",
#include_package_data=True,
author=['Yeon-jae Jwa, Kazuhiro Terao'],
author_email='kterao@slac.stanford.edu, yjwa@slac.stanford.edu',
description='ICARUS signal processing tools',
license='MIT',
keywords='neutrinos deep learning lartpc',
project_urls={
'Source Code': 'https://github.com/DeepLearnPhysics/icarus_signalproc'
},
url='https://github.com/DeepLearnPhysics/icarus_signalproc',
#scripts=['bin/run_flow2supera.py'],
packages=['isproc'],
package_dir={'': 'src'},
#package_data={'flow2supera': ['config_data/*.yaml']},
install_requires=[
'numpy',
'torch',
'h5py',
],
long_description=long_description,
long_description_content_type='text/markdown',
)