|
1 | 1 | [build-system]
|
2 |
| -requires = [ |
3 |
| - "setuptools>=43.0.0", |
4 |
| -] |
| 2 | +requires = ["setuptools>=64", "setuptools-scm>=8"] |
5 | 3 | build-backend = "setuptools.build_meta"
|
6 | 4 |
|
| 5 | +[project] |
| 6 | +name = "matminer" |
| 7 | +description = "matminer is a library that contains tools for data mining in Materials Science" |
| 8 | +readme = "README.md" |
| 9 | +license = {text = "modified BSD"} |
| 10 | +keywords = ["data mining", "materials science", "scientific tools"] |
| 11 | +authors = [ |
| 12 | + { name = "Anubhav Jain", email = "anubhavster@gmail.com" } |
| 13 | +] |
| 14 | +requires-python = ">=3.9" |
| 15 | +dynamic = ["version"] |
| 16 | +classifiers = [ |
| 17 | + "Programming Language :: Python :: 3.9", |
| 18 | + "Programming Language :: Python :: 3.10", |
| 19 | + "Programming Language :: Python :: 3.11", |
| 20 | + "Programming Language :: Python :: 3.12", |
| 21 | + "Development Status :: 4 - Beta", |
| 22 | + "Intended Audience :: Science/Research", |
| 23 | + "Intended Audience :: Information Technology", |
| 24 | + "Operating System :: OS Independent", |
| 25 | + "Topic :: Other/Nonlisted Topic", |
| 26 | + "Topic :: Scientific/Engineering", |
| 27 | +] |
| 28 | +dependencies = [ |
| 29 | + "numpy>=1.23", |
| 30 | + "requests~=2.31", |
| 31 | + "pandas>=1.5, <3", |
| 32 | + "tqdm~=4.66", |
| 33 | + "pymongo~=4.5", |
| 34 | + "scikit-learn~=1.3", |
| 35 | + "sympy~=1.11", |
| 36 | + "monty>=2023", |
| 37 | + "pymatgen>=2023", |
| 38 | +] |
| 39 | + |
| 40 | +[project.urls] |
| 41 | +"Homepage" = "https://github.com/hackingmaterials/matminer" |
| 42 | + |
| 43 | + |
| 44 | +[project.optional-dependencies] |
| 45 | +mpds = ["ujson", "jmespath", "httplib2", "ase", "jsonschema"] |
| 46 | +dscribe = ["dscribe~=2.1"] |
| 47 | +mdfforge = ["mdf-forge"] |
| 48 | +aflow = ["aflow"] |
| 49 | +citrine = ["citrination-client"] |
| 50 | +dev = [ |
| 51 | + "pytest", |
| 52 | + "pytest-cov", |
| 53 | + "pytest-timeout", |
| 54 | + "coverage", |
| 55 | + "coveralls", |
| 56 | + "flake8", |
| 57 | + "black", |
| 58 | + "pylint", |
| 59 | + "sphinx" |
| 60 | +] |
| 61 | +tests = ["matminer[mpds,describe,mdfforge,aflow,citrine,dev]"] |
| 62 | + |
| 63 | +[tool.setuptools_scm] |
| 64 | +version_scheme = "guess-next-dev" |
| 65 | +local_scheme = "no-local-version" |
| 66 | + |
| 67 | +[tool.setuptools.packages.find] |
| 68 | +where = ["matminer"] |
| 69 | + |
| 70 | +[tool.pytest.ini_options] |
| 71 | +testpaths = ["matminer"] |
7 | 72 |
|
8 | 73 | [tool.black]
|
9 | 74 | line-length = 120
|
|
0 commit comments