-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
40 lines (37 loc) · 1.39 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
#!/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()
test_requirements = requirements + ['coverage']
setup(name='blueice',
version='1.2.1',
description='Build Likelihoods Using Efficient Interpolations from monte-Carlo generated Events',
long_description=readme + '\n\n' + history,
author='Jelle Aalbers',
author_email='[email protected]',
url='https://github.com/JelleAalbers/blueice',
packages=['blueice'],
package_dir={'blueice': 'blueice'},
license="MIT",
zip_safe=False,
keywords='blueice',
test_suite='tests',
install_requires=requirements,
tests_require=test_requirements,
setup_requires=['pytest-runner'] + test_requirements,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Physics',
],
)