-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 899 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
26
27
28
from setuptools import setup
about = {}
with open("permutations_stats/__about__.py") as fp:
exec(fp.read(), about)
version = about['__version__']
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='permutations-stats',
version=version,
package_dirs={
'permutations_stats': 'permutations_stats',
'permutations_stats.tests': 'permutations_stats/tests'
},
python_requires='>=3.7',
install_requires=["numpy", "numba"],
packages=['permutations_stats', 'permutations_stats.tests'],
url='https://github.com/trevismd/permutations-stats',
license='GPL-3.0-only',
author='Florian Charlier',
author_email='trevis@cascliniques.be',
description='Permutation-based statistical tests in Python',
long_description=long_description,
long_description_content_type="text/markdown",
)