-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 866 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 866 Bytes
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
from setuptools import setup
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="wcprod",
version="0.1",
author=['Kazuhiro Terao'],
description='Database for the CIDeR simulation production for Water Cherenkov detectors',
license='MIT',
scripts=['cli/wcprod',
'cli/wcprod_gen_shotgun_slac.py',
'cli/wcprod_setup_shotgun.py',
'cli/wcprod_wrapup_shotgun.py',
'cli/wcprod_list_config',
'cli/wcprod_get_config'],
packages=['wcprod'],
include_package_data=True,
package_data={'wcprod': ['config/*.yaml']},
install_requires=[
'numpy',
'plotly',
],
long_description=long_description,
long_description_content_type='text/markdown',
)