-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
69 lines (62 loc) · 1.95 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
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mdproptools"
authors = [
{name = "Rasha Atwi", email = "rasha.atwi@stonybrook.edu"},
{name = "Matthew Bliss", email = "matthew.bliss@stonybrook.edu"},
{name = "Maxim Makeev", email = "maxim.makeev@stonybrook.edu"}
]
dynamic = ["version"]
description = "mdproptools contains MD analysis tools"
readme = "README.md"
license = { text = "MIT" }
keywords = ["MD", "analysis", "lammps"]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.6"
dependencies = [
"numpy >= 1.21.1",
"matplotlib >= 3.3.1",
"scipy >= 1.5.2",
"pandas >= 1.1.2",
"seaborn >= 0.11.0",
"statsmodels >= 0.12.0",
"numba == 0.56.4",
"llvmlite == 0.39.1",
"tqdm>=4.50.0",
"pymatgen@git+https://github.com/molmd/pymatgen@molmd_fix_3-9#egg=pymatgen"
]
[project.optional-dependencies]
dev = ["black>=23.3.0", "isort>=5.10.0", "pytest>=7.4.0", "pytest-cov>=3.0.0", "pytest-benchmark>=4.0.0"]
[project.urls]
repository = "https://github.com/molmd/mdproptools"
changelog = "https://github.com/molmd/mdproptools/blob/master/CHANGELOG.md"
[tool.setuptools]
license-files = ["LICENSE"]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "mdproptools.__version__"}
[tool.setuptools.packages.find]
namespaces = false
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
line_length = 88
order_by_type = true
length_sort = true
lines_between_types = 1
group_by_package = true
force_alphabetical_sort_within_sections = true
combine_straight_imports = true
balanced_wrapping = true
forced_separate = ["pymatgen", "mdproptools"]