-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpyproject.toml
76 lines (69 loc) · 2.01 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
[build-system]
requires = ["setuptools >= 69.5.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "civis"
version = "2.5.0"
description = "Civis API Python Client"
readme = "README.rst"
requires-python = ">= 3.10"
authors = [ { name = "Civis Analytics", email = "opensource@civisanalytics.com" } ]
license = { text = "BSD-3-Clause" }
dependencies = [
"click >= 6.0",
"cloudpickle >= 0.2",
"joblib >= 1.3.0",
"jsonref >= 0.1",
"jsonschema >= 2.5.1",
"PyYAML >= 3.0",
"requests >= 2.32.3",
"tenacity >= 6.2",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://www.civisanalytics.com"
Source = "https://github.com/civisanalytics/civis-python"
[project.scripts]
civis = "civis.cli.__main__:main"
civis_joblib_worker = "civis.run_joblib_func:main"
[project.optional-dependencies]
dev-core = [
"bandit", # Install the latest version.
"black == 24.10.0",
"build == 1.2.1",
"flake8 == 7.1.1",
"pandas == 2.2.3",
"pip-audit", # Install the latest version.
"pytest == 8.3.3",
"pytest-cov == 5.0.0",
"twine == 5.1.1",
]
dev-civisml = [
"feather-format == 0.4.1",
"numpy == 2.1.2",
"scikit-learn == 1.5.2",
"scipy == 1.14.1",
]
docs = [
# docs/requirements.txt pins all transitive dependencies for a reproducible doc build.
"numpydoc == 1.8.0",
"Sphinx == 8.1.3",
"sphinx-rtd-theme == 3.0.2",
]
[tool.setuptools.packages.find]
where = [ "src" ]
[tool.setuptools.package-data]
civis = ["resources/*.json", "py.typed", "**/*.pyi"]
[tool.pytest.ini_options]
addopts = "--strict-markers -vv --cov=src/civis"
testpaths = ["tests"]