forked from mcsorkun/ChemPlot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (57 loc) · 1.55 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "chemplot"
version = "1.3.1"
authors = [
{ name = "Murat Cihan Sorkun", email = "[email protected]" },
{ name = "Dajt Mullaj", email = "[email protected]" },
{ name = "Jackson Warner Burns", email = "[email protected]" },
]
license = { text = "BSD" }
description = "A python library for chemical space visualization."
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
]
urls = { Homepage = "https://github.com/mcsorkun/ChemPlot" }
requires-python = ">=3.8"
dependencies = [
"pandas",
"numpy",
"matplotlib",
"seaborn",
"umap-learn",
"scikit-learn",
"bokeh>=3,<4",
"scipy",
"rdkit",
"mordredcommunity",
"networkx",
]
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["chemplot*"]
exclude = ["docs*", "notebooks*", "performance_tests*"]
[tool.black]
line-length = 150
required-version = "23"
[tool.isort]
profile = "black"