-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
69 lines (60 loc) · 1.7 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
[project]
name = "bokehmol"
description = "Tools for plotting molecules in Bokeh"
authors = [
{ name = "Cédric Bouysset", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["version"]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Chemistry",
]
keywords = [
"science",
"chemistry",
"drug-design",
"cheminformatics",
"chemoinformatics",
]
dependencies = [
"bokeh>=3.0.0,<4",
]
[project.license]
file = "LICENSE"
[project.urls]
Homepage = "https://github.com/cbouy/bokehmol"
Documentation = "https://nbviewer.org/github/cbouy/bokehmol/blob/master/notebooks/quickstart.ipynb"
Discussions = "https://github.com/cbouy/bokehmol/discussions"
Issues = "https://github.com/cbouy/bokehmol/issues"
Changelog = "https://github.com/cbouy/bokehmol/blob/master/CHANGELOG.md"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["bokehmol*"]
[tool.setuptools.dynamic]
version = { attr = "bokehmol._version.__version__" }
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.coverage.report]
include_namespace_packages = true
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if __name__ == .__main__.:",
"if .*TYPE_CHECKING:",
"@.*abstractmethod",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"