generated from JacksonBurns/blank-python-project
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
47 lines (40 loc) · 1.31 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "astartes"
dynamic = ["version"]
authors = [
{ name = "Jackson Burns", email = "jwburns@mit.edu" },
{ name = "Himaghna Bhattacharjee", email = "himaghna@udel.edu" },
{ name = "Kevin Spiekermann", email = "kspieker@mit.edu" },
]
license = { text = "MIT" }
description = "Train:Test Algorithmic Sampling for Molecules and Arbitrary Arrays"
classifiers = [
"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",
]
urls = { Homepage = "https://github.com/JacksonBurns/astartes" }
requires-python = ">=3.8"
dependencies = ["scikit_learn", "tabulate", "numpy", "scipy", "pandas"]
[project.optional-dependencies]
molecules = ["aimsim_core"]
dev = ["black", "isort", "pytest"]
demos = ["plotly", "tabulate", "py2opsin", "kaleido"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.isort]
profile = "black"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["astartes*"]
exclude = ["docs*", "examples*", "test*"]
[tool.setuptools.dynamic]
version = {attr = "astartes.__version__"}