forked from HiSPARC/sapphire
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
53 lines (49 loc) · 2.5 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
from setuptools import setup, find_packages
import sys
if sys.version_info[:2] != (2, 7):
raise Exception('Only Python 2.7 is supported.')
setup(name='hisparc-sapphire',
version='0.15.2',
packages=find_packages(),
url='http://github.com/hisparc/sapphire/',
bugtrack_url='http://github.com/HiSPARC/sapphire/issues',
license='GPLv3',
author='David Fokkema, Arne de Laat, and others',
author_email='[email protected], [email protected]',
maintainer='HiSPARC',
maintainer_email='[email protected]',
description='A framework for the HiSPARC experiment',
long_description=open('README.rst').read(),
keywords=['HiSPARC', 'Nikhef', 'cosmic rays'],
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Education',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
scripts=['sapphire/corsika/generate_corsika_overview',
'sapphire/corsika/qsub_corsika',
'sapphire/corsika/qsub_store_corsika_data',
'sapphire/corsika/store_corsika_data'],
package_data={'sapphire': ['data/*.json',
'data/*/*.json',
'data/current/*.tsv',
'data/gps/*.tsv',
'data/layout/*.tsv',
'data/trigger/*.tsv',
'data/voltage/*.tsv',
'data/electronics/*.tsv',
'corsika/LICENSE',
'tests/test_data/*.h5',
'tests/test_data/*.tsv',
'tests/test_data/*.dat',
'tests/analysis/test_data/*.h5',
'tests/corsika/test_data/*.h5',
'tests/corsika/test_data/1_2/DAT000000',
'tests/corsika/test_data/1_2/*.h5',
'tests/simulations/test_data/*.h5']},
install_requires=['numpy', 'scipy', 'tables>=3.2.0', 'progressbar2',
'lazy', 'mock'],
test_suite="sapphire.tests",)