-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
104 lines (86 loc) · 2.31 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# Copyright 2022 Johannes Reiff
# SPDX-License-Identifier: Apache-2.0
[build-system]
build-backend = 'setuptools.build_meta'
requires = [
'setuptools >=65.0',
'setuptools-scm >=6.4',
]
[project]
name = 'rodeo'
authors = [{name = 'Johannes Reiff', email = 'mail@jreiff.de'}]
description = 'A library showcasing transition-state theory algorithms.'
readme = 'README.rst'
urls = {Homepage = 'https://github.com/joreiff/rodeo'}
requires-python = '>=3.10'
license = {text = 'Apache-2.0'}
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
]
dependencies = [
'numpy >=1.22,<2',
'scipy >=1.8,<2',
]
dynamic = ['version']
[project.optional-dependencies]
dev = [
'pylint >=2.15',
'pytest >=7.0',
'sphinx >=5.0,<6',
'sphinx-rtd-theme >=1.0,<2',
]
[tool.setuptools]
license-files = ['LICENSE', 'NOTICE']
zip-safe = true
[tool.setuptools_scm]
write_to = 'src/rodeo/_version.py'
write_to_template = '''
# Copyright 2022 Johannes Reiff
# SPDX-License-Identifier: Apache-2.0
# pylint: disable=unexpected-line-ending-format
VERSION = '{version}'
'''
[tool.pylint.master]
jobs = 0
ignore = [
'.git',
]
[tool.pylint.'messages control']
disable = [
'missing-docstring',
'no-else-raise',
'no-else-return',
'too-few-public-methods',
]
[tool.pylint.basic]
argument-rgx = '[a-z_][a-z0-9_]{,30}$'
variable-rgx = '[a-z_][a-z0-9_]{,30}$'
attr-rgx = '[a-z_][a-z0-9_]{,30}$'
[tool.pylint.design]
max-args = 8
[tool.pylint.format]
expected-line-ending-format = 'LF'
[tool.pylint.logging]
logging-format-style = 'new'
[tool.pytest.ini_options]
testpaths = ['test']
addopts = [
'--last-failed',
'--import-mode=importlib',
'--strict-markers',
]
markers = [
"slow: marks tests as slow (skip with '-m \"not slow\"' or '--skip-slow')",
]