-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (64 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
73 lines (64 loc) · 1.76 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
64
65
66
67
68
69
70
71
72
73
[project]
name = "gemd"
dynamic = ["version"]
dependencies = [
"pint>=0.24.4,<0.25",
"deprecation>=2.1.0,<3",
"typing_extensions>=4.8,<5; python_version<'3.10'",
]
requires-python = ">=3.9"
authors = [
{name = "Citrine Informatics"}
]
description = "Python binding for Citrine's GEMD data model"
readme = "README.md"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "http://github.com/CitrineInformatics/gemd-python"
[build-system]
requires = ["setuptools>=75.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "gemd.__version__.__version__"}
[tool.setuptools.packages.find]
where = ["."]
include = ["gemd*"]
exclude = ["docs", "tests"]
[tool.setuptools.package-data]
"gemd.demo" = ["strehlow_and_cook.pif", "strehlow_and_cook_small.pif", "toothpick.jpg"]
"gemd.units" = ["citrine_en.txt", "constants_en.txt"]
"tests.units" = ["test_units.txt"]
[dependency-groups]
dev = [
"flake8==7.0.0",
"flake8-docstrings==1.7.0",
"numpy>=1.24.4; python_version<'3.10'",
"pandas>=2.0.3; python_version<'3.10'",
"numpy>=2.0.2,<3; python_version>='3.10'",
"pandas>=2.3.0,<4; python_version>='3.10'",
"pytest==8.4.2",
"pytest-cov==7.0.0",
"derp==0.1.1",
"tomli>=2.2.1",
]
docs = [
"sphinx==5.0.0",
"sphinx-rtd-theme==1.0.0",
"sphinxcontrib-apidoc==0.3.0",
]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[tool.coverage.run]
omit = [
"gemd/demo/*",
]