-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (63 loc) · 2.26 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from setuptools import setup
setup(
name='erna',
version='0.10.0',
description='Easy RuN Access. Tools that help to do batch processing of FACT data',
url='https://github.com/fact-project/erna',
author='Kai Brügge, Jens Buss, Maximilian Nöthe',
author_email='[email protected]',
license='BEER',
packages=[
'erna',
'erna.scripts',
'erna.automatic_processing',
],
package_data={
'erna': ['resources/*'],
'erna.automatic_processing': ['xml/*']
},
install_requires=[
'pandas', # in anaconda
'numpy', # in anaconda
'python-dateutil', # in anaconda
'sqlalchemy', # in anaconda
'pymysql', # in anaconda
'pytz', # in anaconda
'tables',
'pyfact>=0.22.1',
'astropy',
'h5py',
'dask-jobqueue',
'distributed',
'tqdm',
'click',
'pyzmq',
'peewee~=3.0',
'numexpr',
'pyyaml',
'pytest', # also in conda
'wrapt',
'retrying',
# 'fact_condition', install from https://github.com/fact-project/fact_conditions
],
zip_safe=False,
entry_points={
'console_scripts': [
'erna_process_data = erna.scripts.process_fact_data:main',
'erna_process_mc = erna.scripts.process_fact_mc:main',
'erna_process_run_list = erna.scripts.process_fact_run_list:main',
'erna_fetch_run_list = erna.scripts.fetch_fact_runs:main',
'erna_fill_database = erna.scripts.fill_database:main',
'erna_check_availability = erna.scripts.check_availability:main',
'erna_create_tables = erna.scripts.create_db:main',
'erna_upload = erna.scripts.upload:main',
'erna_console = erna.scripts.console:main',
'erna_automatic_processing_executor = erna.automatic_processing.executor:main',
'erna_automatic_processing = erna.automatic_processing.__main__:main',
'erna_gather_fits = erna.scripts.gather_fits:main',
'erna_submit_runlist = erna.scripts.submit_runlist:main',
],
},
setup_requires=['pytest-runner'],
tests_require=['pytest>=3.0.0'],
)