-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
31 lines (28 loc) · 1.17 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
from setuptools import find_packages, setup
setup(
name='hypothetical',
version='0.3.2',
author='Aaron Schlegel',
author_email='aaron@aaronschlegel.me',
description='Hypothesis testing and other testing methods',
packages=find_packages(exclude=['docs', 'notebooks', 'tests*', '*.egg-info', 'data', 'venv']),
include_package_data=True,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=['numpy>=1.13.0', 'numpy_indexed>=0.3.5', 'pandas>=0.22.0', 'scipy>=1.1.0'],
home_page='',
classifiers=[
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)