-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.36 KB
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
[project]
name = "citrine"
dynamic = ["version"]
dependencies = [
"requests>=2.32.2,<3",
"pyjwt>=2,<3",
"arrow>=1.0.0,<2",
"gemd>=2.1.9,<3",
"boto3>=1.34.35,<2",
"deprecation>=2.1.0,<3",
"urllib3>=2.5.0,<3",
"tqdm>=4.27.0,<5",
]
requires-python = ">=3.10"
authors = [
{name = "Citrine Informatics"}
]
description = "Python library for the Citrine Platform"
readme = "README.md"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.urls]
Homepage = "http://github.com/CitrineInformatics/citrine-python"
[build-system]
requires = ["setuptools>=75.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "citrine.__version__.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[dependency-groups]
dev = [
"flake8==7.0.0",
"flake8-docstrings==1.7.0",
"pandas==2.3.0",
"pytest==8.4.2",
"pytest-cov==7.0.0",
"derp==0.1.1",
"tomli>=2.2.1",
"factory-boy==3.3.3",
"mock==5.2.0",
"requests-mock==1.12.1"
]
docs = [
"sphinx==8.1.3",
"sphinx-rtd-theme==3.1.0",
"sphinxcontrib-apidoc==0.6.0",
]
[tool.pytest.ini_options]
testpaths = [
"tests",
]