-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
25 lines (23 loc) · 910 Bytes
/
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
from setuptools import setup
with open('README.md', 'r') as fp:
long_description = fp.read()
setup(
name='ndtest',
version='0.1',
description='Multi-dimensional statistical tests with python, including the 2D Kolmogorov–Smirnov test and energy distance statistics.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/syrte/ndtest/',
keywords=['statistics', 'statistical test', 'Python'],
author='Zhaozhou Li',
author_email='lizz.astro@gmail.com',
py_modules=['ndtest'],
install_requires=['numpy', 'scipy'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)