-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
53 lines (49 loc) · 1.4 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = [
'h5py~=3.1.0',
'joblib==1.0.0',
'librosa==0.8.1',
'matplotlib==3.3.3',
'numpy==1.19.5',
'scipy==1.5.4',
'scikit-learn==0.23.2',
'pandas==1.1.5',
'seaborn==0.11.0',
'loguru==0.5.3',
'tensorflow==2.5.1',
'ruamel.yaml==0.16.12'
]
test_requirements = [
'tox==3.23.0',
'pytest==6.2.2',
'pytest-cov==2.10.1',
]
setup(
name="mplc",
version='0.4.2',
author="LabeliaLabs",
author_email="[email protected]",
description="A distributed-learning package for the study of multi-partner learning approaches "
"and contributivity measurement methods",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/LabeliaLabs/distributed-learning-contributivity.git",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
keywords=['library',
'substra',
'labelia',
'machine learning',
'contributivity',
'multi-partner learning',
'distributed learning'],
license='Apache 2.0',
install_requires=requirements,
tests_require=test_requirements,
python_requires='>=3.6',
)