generated from ydataai/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
123 lines (112 loc) · 2.87 KB
/
pyproject.toml
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=67.4.0,<68.0.0",
"setuptools-scm>=7.1.0,<8.0.0",
"wheel>=0.38.4,<1.0.0",
]
[project]
name = "ydata-sdk"
authors = [
{name = "YData", email = "[email protected]"},
]
description = "YData SDK allows to use the *Data-Centric* tools from the YData ecosystem to accelerate AI development"
readme = "README.md"
requires-python = ">=3.8,<3.13"
classifiers = [
"License :: OSI Approved :: MIT License",
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules'
]
dynamic = [
"version",
]
dependencies = [
"httpx==0.23.3",
"ydata-core>=0.2.0",
"pandas>=1.5.0",
"prettytable==3.6.0",
"pydantic==1.10.9",
"typeguard==2.13.3",
"ydata-datascience"
]
[project.license]
file = "LICENSE"
[project.urls]
Home = "https://github.com/ydataai/ydata-sdk"
[project.optional-dependencies]
dev = [
"twine",
"build",
"pylint==2.17.7",
"black==22.12.0",
"flake8==6.1.0",
"isort==5.12.0",
"pre-commit==2.21.0",
"pyc_wheel==1.2.7",
"mypy==1.4.1",
]
doc = [
"mkdocs>=1.6.0,<1.7.0",
"mkdocs-material>=9.0.12,<10.0.0",
"mkdocs-table-reader-plugin<=2.2.0",
"mike>=2.1.1,<2.2.0",
"mkdocstrings[python]>=0.20.0,<1.0.0",
"mkdocs-badges"
]
test = [
"pytest==6.2.5",
"pytest-bdd==4.0.*",
"pytest-cov==2.11.*",
"pytest-xdist==2.2.*",
"pytest-mccabe>=2.0.0,<3.0.0",
]
[tool.setuptools.dynamic]
version = { attr = "ydata.sdk.__version__" }
[tool.setuptools.package-data]
"*" = [
"VERSION",
"*.pyi",
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["ydata.sdk*"]
[tool.pytest.ini_options]
mccabe-complexity = 10
[tool.pytest]
norecursedirs = "tests/helpers"
[tool.pylint]
max-locals = 15
max-returns = 6
max-branches = 12
max-statements = 50
max-parents = 7
max-attributes = 7
min-public-methods = 2
max-public-methods = 20
max-module-lines = 1000
max-line-length = 120
disable = [
"W0511", # fixme
"W0311", # bad-indentation
"C0330", # bad-continuation
"R0903", # too-few-public-methods
]
[tool.coverage.run]
branch = true
source = ["src"]
omit = ["*/examples/*", "*setup.py", "*/build/*"]