forked from JacksonBurns/mordred-community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (33 loc) · 1.04 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "mordredcommunity"
version = "2.0.3"
authors = [{ name = "Jackson Burns", email = "[email protected]" }]
license = { text = "BSD-3-Clause" }
description = "Community-Maintained Version of mordred"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
urls = { Homepage = "https://github.com/JacksonBurns/mordred-community" }
requires-python = ">=3.8"
dependencies = ["rdkit", "six", "numpy", "networkx", "packaging"]
[project.optional-dependencies]
full = ["pandas", "tqdm", "pyyaml"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.isort]
profile = "black"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
mordred = ["data/*.txt", "tests/references/**"]
[tool.setuptools.packages.find]
where = ["."]
include = ["mordred*"]
exclude = ["docs*", "examples*"]