-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
72 lines (71 loc) · 2.65 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
from setuptools import find_packages, setup # pragma: no cover
setup( # pragma: no cover
name="Scikit-longitudinal",
version="0.0.6",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url="https://github.com/simonprovost/scikit-longitudinal",
description="""
Scikit-longitudinal (Sklong) is a machine learning library designed to analyse
longitudinal data (Classification tasks focussed as of today). It offers tools and models for processing, analysing,
and predicting longitudinal data, with a user-friendly interface that
integrates with the `Scikit-learn` ecosystem.
""",
author="Provost Simon, Alex Freitas",
author_email="[email protected], [email protected]",
packages=find_packages(),
project_urls={
'Homepage': 'https://github.com/simonprovost/scikit-longitudinal',
'Documentation': 'https://simonprovost.github.io/scikit-longitudinal/',
'Source': 'https://github.com/simonprovost/scikit-longitudinal/tree/main/scikit_longitudinal',
'Tracker': 'https://github.com/simonprovost/scikit-longitudinal/issues/',
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
install_requires=[
"deep-forest>=0.1.7",
"starboost==0.0.2",
"scipy>=1.5.0",
"pandas<2.0.0,>=1.5.3",
"matplotlib<4.0.0,>=3.7.0",
"jupyter<2.0.0,>=1.0.0",
"overrides<8.0.0,>=7.3.1",
"ray<3.0.0,>=2.3.1",
"statsmodels<1.0.0,>=0.14.0",
"numpy==1.23.3",
"graphviz<1.0.0,>=0.20.1",
"liac-arff>=2.2.2",
"threadpoolctl<4.0.0,>=3.1.0",
"stopit>=1.1.2",
"scikit-lexicographical-trees==0.0.2",
"rich>=13.6.0",
],
extras_require={
"dev": [
"autoflake<3.0.0,>=2.1.1",
"flake8-docstrings>=1.7.0",
"pydocstyle>=6.3.0",
"flake8>=6.0.0",
"pylint>=2.17.1",
"isort>=5.12.0",
"black>=23.10.1",
"autopep8>=2.0.2",
"docformatter[tomli]<2.0.0,>=1.6.4",
"pytest-cov>=4.0.0",
"genbadge>=1.1.0",
"mkdocs==1.6.0",
"mkdocs-get-deps==0.2.0",
"mkdocs-material==9.5.27",
"mkdocs-material[imaging]",
"mkdocs-material-extensions==1.3.1",
"mkdocs-minify-plugin==0.8.0"
]
},
python_requires=">=3.9,<3.10",
license="MIT",
)