-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (43 loc) · 1.29 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
from setuptools import setup, find_packages
setup(
name='binny',
version='0.6.2',
description=(
'Tools for binning'
),
long_description="""
Bin one-dimensional data and calculate conditional expectation
values.
""",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords=[
'Binning', 'Conditional expectation'
],
url='http://github.com/felixpatzelt/binny',
download_url=(
'https://github.com/felixpatzelt/binny/archive/0.6.1.tar.gz'
),
author='Felix Patzelt',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy',
'pandas',
],
include_package_data=True,
zip_safe=False,
#test_suite='tests',
)