-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
60 lines (53 loc) · 1.33 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
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "aiida-project"
dynamic = ["version"]
description = "An AiiDA environment manager"
authors = [{name = "The AiiDA team", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE.txt"}
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Framework :: AiiDA",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering"
]
keywords = ["aiida", "workflows"]
requires-python = ">=3.8"
dependencies = [
"py~=1.11",
"pydantic~=1.10,>=1.10.8",
"python-dotenv~=1.0",
"typer[all]~=0.9",
"pyyaml~=6.0",
]
[project.urls]
Source = "https://github.com/aiidateam/aiida-project"
[project.scripts]
aiida-project = "aiida_project.commands.main:app"
[project.optional-dependencies]
dev = [
"pre-commit~=3.2.2",
]
[tool.black]
line-length = 100
[tool.ruff]
line-length = 100
[[tool.mypy.overrides]]
module = [
"dotenv",
"pydantic",
"yaml",
"typer",
"rich"
]
ignore_missing_imports = true