-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (53 loc) · 1.33 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.distutils.bdist_wheel]
universal = true
[tool.setuptools.dynamic]
version = {attr = "ellipticbn.__version__.__version__"}
[tool.setuptools.package-data]
"*" = [
"src/ellipticbn/data/*.txt",
"src/ellipticbn/data/*.csv"
]
[project]
name = "ellipticbn"
dynamic = ["version"]
dependencies = [
"numpy>=1.10",
"networkx",
"scikit-learn",
"plotly",
"pandas",
"matplotlib",
"xlsxwriter",
"mdanalysis",
"scipy"
]
requires-python = ">=3.9"
authors = [
{name = "Michael Shavlik", email = "[email protected]"},
{name = "Mike Harms", email = "[email protected]"},
]
maintainers = [
{name = "Mike Harms", email = "[email protected]"}
]
description = "Automatically measure the ellipticity of cucurbituril macrocycles!"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["macrocycle", "cucurbituril", "ellipticity", "chemistry", "geometry", "host", "guest"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python"
]
[project.urls]
Repository = "https://github.com/harmslab/ellipticbn.git"
"Bug Tracker" = "https://github.com/harmslab/ellipticbn/issues"
[project.scripts]
ellipticbn = "ellipticbn.run_all:main_cli"
[project.optional-dependencies]
test = [
"coverage",
"flake8",
"pytest"
]