-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.11 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 setup
setup(
author='Pavol Harar',
author_email='pavol.harar@gmail.com',
name='redistributor',
version='1.0.0',
license='MIT',
py_modules=['redistributor'],
description='''A tool for automatic transformation of empirical data distributions''',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
keywords='distribution transformation',
project_urls={
'Source': 'https://github.com/paloha/redistributor',
'Documentation': 'https://github.com/paloha/redistributor/raw/master/docs/redistributor.pdf',
'Publication': 'https://arxiv.org/abs/2210.14219',
'Issue tracker': 'https://github.com/paloha/redistributor/issues',
},
python_requires='>3.6',
platforms=['any'],
install_requires=['numpy>=1.14.5', 'scipy>=1.1.0',
'scikit_learn>=0.19.1', 'psutil>=5.4.6'],
extras_require={
'dev': ['pdoc3', # Documentation
'pyflakes', # Codecheck
'jupyter', # Examples
'pytest', # Testing
],
}
)