-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpyproject.toml
55 lines (46 loc) · 1.48 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "rdeditor"
description = "An RDKit based molecule editor using PySide"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "LGPL"}
authors = [
{name = "Esben Jannik Bjerrum", email = "[email protected]"},
]
keywords = ["RDKit", "molecule", "editor", "pyside"]
dependencies = [
"PySide6",
"numpy",
"rdkit",
"pyqtdarktheme",
]
dynamic = ["version"]
[project.urls]
Homepage = "http://github.com/ebjerrum/rdeditor"
"Bug Tracker" = "https://github.com/ebjerrum/rdeditor/issues"
Documentation = "https://github.com/ebjerrum/rdeditor/blob/master/README.md"
"Source Code" = "https://github.com/ebjerrum/rdeditor"
"Citation" = "https://github.com/ebjerrum/rdeditor/blob/master/CITATION.md"
"ChemRxiv Preprint" = "https://chemrxiv.org/engage/chemrxiv/article-details/65e6dcfa9138d23161b2979c"
"Developer Guide" = "https://github.com/ebjerrum/rdeditor/blob/master/DEVELOPER.md"
[project.optional-dependencies]
dev = ["ruff", "wheel", "twine", "setuptools_scm"]
[project.scripts]
rdEditor = "rdeditor.rdEditor:launch"
[tool.setuptools]
packages = ["rdeditor"]
zip-safe = false
[tool.setuptools.package-data]
rdeditor = [
"icon_themes/dark/*",
"icon_themes/dark/application/*",
"icon_themes/light/*",
"icon_themes/light/application/*",
]
[tool.setuptools_scm]
write_to = "rdeditor/_version.py"
[tool.ruff]
extend = "ruff.toml"