forked from RadonPy/RadonPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
62 lines (55 loc) · 1.42 KB
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
62
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "radonpy-pypi"
dynamic = ["version"]
description = "RadonPy is a Python library to automate physical property calculations for polymer informatics."
readme = "README.md"
license = {text = "BSD-3-Clause"}
authors = [
{name = "Yoshihiro Hayashi", email = "yhayashi@ism.ac.jp"}
]
keywords = ["polymer informatics", "molecular dynamics"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"numpy",
"pandas",
"scipy",
"psutil",
"matplotlib",
"rdkit>=2020.03",
"mdtraj>=1.9",
]
[project.optional-dependencies]
lammps = [
"lammps>=2020.03.03",
]
biopolymers = [
"ambertools",
"intermol",
]
minepy = [
"minepy",
]
[project.urls]
Homepage = "https://github.com/RadonPy/RadonPy"
Repository = "https://github.com/RadonPy/RadonPy"
[tool.setuptools]
platforms = ["Linux", "Mac OS-X", "Unix", "Windows"]
[tool.setuptools.packages.find]
include = ["radonpy*"]
[tool.setuptools.package-data]
radonpy = [
"ff/ff_dat/*.json",
"core/pdb/*.pdb"
]
[tool.setuptools.dynamic]
version = {attr = "radonpy.__version__"}