-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
92 lines (83 loc) · 2.82 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mispr"
authors = [
{name = "Rasha Atwi", email = "rasha.atwi@stonybrook.edu"},
{name = "Matthew Bliss", email = "matthew.bliss@stonybrook.edu"}
]
maintainers = [
{name = "Rasha Atwi", email = "rasha.atwi@stonybrook.edu"},
{name = "Matthew Bliss", email = "matthew.bliss@stonybrook.edu"}
]
dynamic = ["version"]
description = "mispr contains FireWorks workflows for Materials Science"
readme = "README.md"
license = { text = "MIT" }
keywords = ["dft", "md", "lammps", "gaussian", "high-throughput", "workflow", "materials science"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.9, <3.13"
dependencies = [
"numpy >= 1.21.1",
"pymongo>=3.3.0,<=3.12.0",
"matplotlib >= 3.3.1",
"networkx >= 2.5",
"FireWorks >= 2.0.3",
"scipy >= 1.5.2",
"pandas >= 1.1.2",
"pubchempy",
"parmed",
"mdproptools",
"dnspython",
"ruamel.yaml>=0.15.35,<=0.17.40", # should be removed in the future, but is needed since FireWorks has not updated their function calls to match newer versions of ruamel.yaml
]
[project.optional-dependencies]
dev = ["black>=23.3.0", "isort>=5.10.0"]
[tool.setuptools.package-data]
"mispr.gaussian.data" = ["*.bib"]
"mispr.lammps.data" = ["*.json"]
[project.urls]
repository = "https://github.com/molmd/mispr"
documentation = "https://molmd.github.io/mispr/"
changelog = "https://github.com/molmd/mispr/blob/master/CHANGELOG.md"
[tool.setuptools]
license-files = ["LICENSE"]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "mispr.__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 = false
balanced_wrapping = true
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "OPENBABEL", "PYMATGEN", "FIREWORKS", "CUSTODIAN", "MDPROPTOOLS", "MISPR", "FIRSTPARTY", "LOCALFOLDER"]
forced_separate = ["openbabel", "pymatgen", "fireworks", "custodian", "mdproptools", "mispr"]
known_openbabel = ["openbabel"]
known_pymatgen = ["pymatgen"]
known_fireworks = ["fireworks"]
known_custodian = ["custodian"]
known_mdproptools = ["mdproptools"]
known_mispr = ["mispr"]
[tool.black]
line-length = 88