-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
47 lines (42 loc) · 1.47 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
import setuptools
with open('requirements_minimal.txt') as f:
requires = [x.strip() for x in f.readlines()]
with open('requirements.txt') as f:
requires_strict = [x.strip() for x in f.readlines()]
with open('README.md') as file:
readme = file.read()
with open('HISTORY.md') as file:
history = file.read()
setuptools.setup(
name='flamedisx',
version='2.1.0',
description='Fast likelihood analysis in more dimensions for xenon TPCs',
author='Flamedisx developers',
url='https://github.com/FlamTeam/flamedisx',
python_requires=">=3.6",
include_package_data=True,
package_data={
'flamedisx': ['nest/config/*.ini'],
},
setup_requires=['pytest-runner'],
install_requires=requires,
tests_require=['pytest'],
extras_require={
'docs': ['sphinx',
'sphinx_rtd_theme',
'nbsphinx',
'recommonmark'],
'strict-deps': requires_strict,
},
long_description=readme + '\n\n' + history,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Physics'],
zip_safe=False)