-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
85 lines (75 loc) · 1.83 KB
/
setup.cfg
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
[bumpversion]
current_version = 0.0.4-a3
commit = False
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}-{release}{build}
{major}.{minor}.{patch}
[options]
package_dir =
= src
packages = find:
python_requires = >= 3.9
install_requires =
click>=8.0.0
pathspec>=0.9.0
lark>=1.0.0
mypy-extensions==0.4.3
py_modules = mamushi
include_package_data = True
[options.package_data]
mamushi.parsing = *.lark
[options.entry_points]
console_scripts =
mamushi=mamushi:main
[options.extras_require]
dev =
black==23.1.0
pre-commit==2.20.0
mypy_extensions==0.4.3
mypy>=0.900
flake8==5.0.4
pylint==2.14.5
pytest>=6.0.0
pytest-cov>=3.0.0
coverage>=6.0.0
bump2version>=1.0.0
[options.packages.find]
where = src
exclude =
tests
[metadata]
name = mamushi
description = Vyper formatter
license = { text = "MIT" }
long_description = file: README.md
long_description_content_type = text/markdown
version = attr: mamushi.__version__.__version__
url = https://github.com/benber86/mamushi
project_urls =
Source = https://github.com/benber86/mamushi
Tracker = https://github.com/benber86/mamushi/issues
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Quality Assurance
[bumpversion:part:release]
optional_value = release
values =
a
b
release
[bumpversion:file:./src/mamushi/__version__.py]
[bumpversion:part:build]
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"