forked from basf/metis-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 1.49 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
[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",
"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"]
[tool.setuptools.dynamic]
version = {attr = "metis_backend.__version__"}
readme = {file = ["README.rst"]}
dependencies = {file = ["requirements.txt"]}