forked from benber86/mamushi
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
74 lines (66 loc) · 1.64 KB
/
setup.cfg
File metadata and controls
74 lines (66 loc) · 1.64 KB
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
[bumpversion]
current_version = 0.1.0
commit = True
tag = True
[bumpversion:file:./src/mamushi/__version__.py]
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"
[options]
package_dir =
= src
packages = find:
python_requires = >= 3.9
install_requires =
click==8.1.3
pathspec>=0.9.0
lark>=1.0.0
mypy-extensions>=1.1.0
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==25.1.0
pre-commit==2.20.0
mypy-extensions>=1.1.0
mypy>=0.900
flake8==7.2.0
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
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Software Development :: Quality Assurance