-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (31 loc) · 1.08 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
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()
setup(name='laidbax',
version='0.4.0',
description='Statistical XENON1T Analysis for the lazy analyst.',
long_description=readme + '\n\n' + history,
author='Jelle Aalbers',
author_email='[email protected]',
url='https://github.com/XENON1T/laidbax',
packages=['laidbax', 'laidbax.data'],
package_dir={'laidbax': 'laidbax'},
install_requires=requirements,
license="MIT",
zip_safe=False,
keywords='laidbax',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
)