-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
28 lines (26 loc) · 1 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
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 + ['pandas']
setup(name='multihist',
version='0.6.5',
description='Convenience wrappers around numpy histograms',
long_description=readme + '\n\n' + history,
author='Jelle Aalbers',
author_email='[email protected]',
url='https://github.com/jelleaalbers/multihist',
license='MIT',
py_modules=['multihist'],
install_requires=requirements,
keywords='multihist,histogram',
test_suite='tests',
tests_require=test_requirements,
classifiers=['Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3'],
zip_safe=False)