-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (37 loc) · 1.15 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
import setuptools
fisher_rao=['scikit_fda>=0.8', 'fdasrsf==2.4.3']
data_load=['requests>=2.31.0']
setuptools.setup(
name="pyfrechet",
version="1.0.3",
author="Matthieu Bulté",
author_email="[email protected]",
description="A module for the manipulation and analysis of data in metric spaces.",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/matthieubulte/pyfrechet",
project_urls={
"Bug Tracker": "https://github.com/matthieubulte/pyfrechet/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(include="pyfrechet*"),
python_requires=">=3.9",
install_requires=[
'geomstats==2.5.0',
'joblib>=1.2.0',
'numpy>=1.23.5',
'pandas>=1.5.3',
'scikit_learn>=1.2.2',
'scipy>=1.9.1'
],
extras_require={
'fisher-rao': fisher_rao,
'data-load': data_load,
'all': fisher_rao + data_load,
'test': ['pytest>=7.2.2',]
}
)