-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
35 lines (30 loc) · 1001 Bytes
/
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
[build-system]
requires = ["setuptools>=64", "wheel", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pubgrep"
dynamic = ["version"]
description = "A tool for retrieving 3D conformers in the PubChem database."
authors = [
{ name = "Marcel Stahn", email = "stahn@thch.uni-bonn.de" },
{ name = "Marcel Müller", email = "marcel.mueller@thch.uni-bonn.de" },
]
maintainers = [
{ name = "Marcel Müller", email = "marcel.mueller@thch.uni-bonn.de" },
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["chemistry", "pubchem", "compound search"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["requests", "tqdm>=4.66.0", "types-requests", "types-tqdm"]
requires-python = ">=3.12"
[project.scripts]
pubgrep = "pubgrep:cli"
[tool.setuptools]
package-dir = { "" = "pubgrep" }
[tool.setuptools_scm]
write_to = "pubgrep/version.py"