-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.19 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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='PyNonpar',
version='0.2.0',
packages=['PyNonpar'],
url='https://github.com/happma/PyNonpar',
license='GPL-3',
author='Martin Happ',
author_email='[email protected]',
description='Nonparametric Test Statistics',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'numpy',
'pandas',
'pytest',
'scipy',
'pytest-cov',
'codecov',
'numba',
],
classifiers=(
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
)
)