-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (52 loc) · 1.19 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "MolParse"
version = "0.0.32"
authors = [
{ name = "Max Winokan", email = "[email protected]" },
]
description = "Package for parsing, writing, and modifying molecular structure files"
readme = "README.md"
requires-python = ">=3.9"
requires = []
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"mpytools >= 0.0.9",
"numpy",
"matplotlib",
"plotly",
"ase",
"rdkit",
"py3Dmol",
"IPython",
"kaleido",
]
[project.urls]
"Homepage" = "https://molparse.winokan.com"
"Bug Tracker" = "https://github.com/mwinokan/MolParse/issues"
[tool.hatch.build]
include = [
"molparse/*.py",
"molparse/dl_poly/*.py",
"molparse/dna/*.py",
"molparse/ndfes/*.py",
"molparse/hijack/*.py",
"molparse/monte/*.py",
"molparse/mutate/*.py",
"molparse/rdkit/*.py",
"molparse/signal/*.py",
"molparse/sites/*.py",
"molparse/styles/*.py",
"molparse/tunnel/*.py",
"molparse/units/*.py",
"molparse/ref/*.pdb",
"tests/*.py",
"molxvg",
"moltree",
]