-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (51 loc) · 1.35 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
[project]
name = "cp2k-basis"
dynamic = ["version"]
authors = [
{name = "Pierre Beaujean", email = "[email protected]"},
]
description = "Just a project to have an overview of the content of CP2K basis sets and potentials."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
'numpy',
'h5py',
'pyyaml',
'requests',
'Flask>=2.0',
'Flask-Limiter',
'webargs',
'more-itertools',
'diffpatch',
'schema'
]
[project.optional-dependencies]
dev = [
"flake8",
"flake8-quotes",
"autopep8",
"mkdocs",
"mkdocs-material",
"mkdocstrings",
"pymdown-extensions",
"bump2version"
]
[project.scripts]
cb_fetch_data = "cp2k_basis.scripts.fetch_data:main"
cb_explore_library = "cp2k_basis.scripts.explore_library:main"
cb_explore_file = "cp2k_basis.scripts.explore_file:main"
[tool.setuptools]
packages = ['cp2k_basis', 'cp2k_basis.scripts']
[tool.setuptools.dynamic]
version = {attr = "cp2k_basis.__version__"}