-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.27 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
# Meta information: PyPI and Pip
[project]
name = 'andi-py'
authors = [{name='Florian Kolbl - Yannick Bornat - Louis Regnacq'}]
license = {file='License.txt'}
keywords = ['osciloscope', 'hardware', 'electronics', 'measurements']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Natural Language :: English']
readme = 'pypi.md'
requires-python = '>=3.6'
dependencies = ['numpy']
dynamic = ['version', 'description']
[project.urls]
Documentation = 'https://andi.readthedocs.io'
Source = 'https://github.com/fkolbl/andi'
[tool.bumpver]
current_version = "1.0.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"setup.py" = ['version = "{version}"']
"andi/__init__.py" = ["{version}"]