-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (79 loc) · 2.03 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
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "electrolytes"
description = "Electrolyte database manager"
readme = "README.md"
requires-python = ">=3.9"
authors = [{name = "Gabriel S. Gerlero", email = "[email protected]"}]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Pydantic :: 2",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"typer-slim>=0.12.0,<0.16",
"pydantic>=2.0.3,<3",
"filelock>=3.12.3,<4",
]
dynamic = ["version"]
[project.optional-dependencies]
lint = ["ruff"]
typing = [
"mypy==1.*",
"pytest>=7,<9",
]
test = [
"pytest>=7,<9",
"pytest-cov",
]
dev = [
"electrolytes[lint]",
"electrolytes[typing]",
"electrolytes[test]",
]
[project.urls]
Homepage = "https://github.com/microfluidica/electrolytes"
Repository = "https://github.com/microfluidica/electrolytes"
[project.scripts]
electrolytes = "electrolytes.__main__:app"
[tool.setuptools.dynamic]
version = {attr = "electrolytes.__version__"}
[tool.setuptools.package-data]
electrolytes = ["db1.json"]
[tool.mypy]
plugins = ["pydantic.mypy"]
packages = [
"electrolytes",
"tests",
]
strict = true
[tool.ruff.lint]
extend-select = ["ALL"]
extend-ignore = [
"BLE001",
"C901",
"COM812",
"D",
"E501",
"FA100",
"ISC001",
"PLR0913",
"S101",
]