-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
71 lines (62 loc) · 1.6 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
61
62
63
64
65
66
67
68
69
70
71
[build-system]
build-backend = 'flit_core.buildapi'
requires = ['flit_core>=3.4,<4']
[project]
authors = [
{name = 'AiiDA Team', email = 'aiidateam@gmail.com'}
]
classifiers = [
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
]
dependencies = [
'click',
'psycopg[binary]>=3.0'
]
dynamic = ['description', 'version']
license = {file = 'LICENSE'}
name = 'pgsu'
readme = 'README.md'
requires-python = '>=3.7'
[project.optional-dependencies]
dev = [
'pre-commit~=2.2',
'pylint~=2.5.0',
'pgtest>=1.3.1',
'pytest',
'pytest-cov'
]
[project.scripts]
pgsu = 'pgsu.cli:run'
[project.urls]
homepage = 'https://github.com/aiidateam/pgsu'
source = 'https://github.com/aiidateam/pgsu'
tracker = 'https://github.com/aiidateam/pgsu/issues'
[tool.flit.module]
name = 'pgsu'
[tool.flit.sdist]
exclude = [
'.github/',
'tests/',
'.coverage',
'.gitignore',
'.pre-commit-config.yaml'
]
[tool.coverage.run]
parallel = true
[tool.pylint.format]
max-line-length = 120
max-args = 7
[tool.pytest.ini_options]
addopts = "--durations=0 --cov=pgsu"