-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.64 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
[build-system]
requires = ["setuptools", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "metis_backend"
dynamic = ["version", "readme", "dependencies"]
description = "Metis infra utility toolset and CRUD-server for materials informatics"
authors = [{name = "Evgeny Blokhin", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AiiDA",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Information Analysis",
]
keywords = ["materials informatics", "materials platform", "nanotechnology", "virtual laboratory"]
requires-python = ">=3.8"
[project.urls]
Home = "https://github.com/basf/metis-backend"
Issues = "https://github.com/basf/metis-backend/issues"
Source = "https://github.com/basf/metis-backend"
[tool.setuptools]
packages = ["metis_backend", "metis_backend.structures", "metis_backend.calculations", "metis_backend.datasources", "metis_backend.phaseid"]
[tool.setuptools.dynamic]
version = {attr = "metis_backend.__version__"}
readme = {file = ["README.rst"]}
dependencies = {file = ["requirements.txt"]}