-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (25 loc) · 953 Bytes
/
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
requirements = open('requirements.txt').read().splitlines()
test_requirements = requirements + ['flake8']
setup(name='hax',
version='0.2',
description="Handy Analysis for XENON",
long_description=readme + '\n\n' + history,
url='https://github.com/XENON1T/hax',
license='MIT',
package_data={'hax': ['pax_classes/*.cpp', 'minitrees', 'hax.ini']},
package_dir={'hax': 'hax'},
packages=['hax',
'hax.treemakers'],
scripts=['bin/haxer'],
py_modules=['hax'],
install_requires=requirements,
classifiers=['Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3'],
zip_safe=False)