-
Notifications
You must be signed in to change notification settings - Fork 194
/
pyproject.toml
93 lines (84 loc) · 2.06 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
93
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "matminer"
description = "matminer is a library that contains tools for data mining in Materials Science"
readme = "README.md"
license = {text = "modified BSD"}
keywords = ["data mining", "materials science", "scientific tools"]
authors = [
{ name = "Anubhav Jain", email = "[email protected]" }
]
requires-python = ">=3.9"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Topic :: Other/Nonlisted Topic",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy>=1.23",
"requests~=2.31",
"pandas>=1.5, <3",
"tqdm~=4.66",
"pymongo~=4.5",
"scikit-learn~=1.3",
"sympy~=1.11",
"monty>=2023",
"pymatgen>=2023",
]
[project.urls]
"Homepage" = "https://github.com/hackingmaterials/matminer"
[project.optional-dependencies]
mpds = ["ujson", "jmespath", "httplib2", "ase", "jsonschema"]
dscribe = ["dscribe~=2.1"]
mdfforge = ["mdf-forge"]
aflow = ["aflow"]
citrine = ["citrination-client"]
dev = [
"pytest",
"pytest-cov",
"pytest-timeout",
"coverage",
"coveralls",
"flake8",
"black",
"pylint",
"sphinx"
]
tests = ["matminer[mpds,describe,mdfforge,aflow,citrine,dev]"]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[tool.setuptools.packages.find]
where = ["matminer"]
[tool.pytest.ini_options]
testpaths = ["matminer"]
[tool.black]
line-length = 120
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''