-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1017 Bytes
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1017 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mapper"
version = "0.1"
dependencies = [
"numpy",
"rdkit",
]
requires-python = ">=3.11"
authors = [
{name = "Mikolaj Kowalik", email = "mxk@illinois.edu"},
]
maintainers = [
{name = "Mikolaj Kowalik", email = "mxk@illinois.edu"},
]
description = "Approximate structure-matching algorithm by Lynch and Willett"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["chemoinformatics", "structure matching", "Lynch-Wilett"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Langugage :: Python :: 3",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
test = [
"coverage",
"pytest",
]
docs = [
"sphinx",
"sphinx-autoapi",
"sphinx-rtd-theme",
]
[project.urls]
Homepage = "https://github.com/mxk62/Mapper"
Issues = "https://github.com/mxk62/Mapper/issues"
[tool.black]
target-version = ["py311"]
[tool.isort]
profile = "black"