-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 856 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 856 Bytes
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
from setuptools import setup
setup_kwargs = {
'name': 'pypermut',
'version': '0.2.2',
'description': 'Python package for permutation tests, for statistics and machine learning',
'long_description': 'Python package for permutation tests, for statistics and machine learning',
'author': 'Quentin Barthelemy',
'url': 'https://github.com/qbarthelemy/PyPermut',
'packages': ['pypermut'],
'platforms': 'any',
'python_requires': '>=3.9,<4.0',
'install_requires': [
'matplotlib>=3.0.0',
'numpy>=1.16.5',
'scipy>=1.6.0,<1.17.0',
],
'extras_require': {
'docs': [
'sphinx',
'sphinx-gallery',
'numpydoc',
'scikit-learn',
],
'tests': [
'flake8',
'pytest',
],
},
}
setup(**setup_kwargs)