-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
39 lines (36 loc) · 915 Bytes
/
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
[metadata]
name = scame
version = attr: scame.__version__
description = A composite linter and style checker.
long_description = file: README.rst
author = Curtis Hovey
maintainer = Adi Roibam
maintainer_email = adi.roiban@chevah.com
url = https://github.com/chevah/scame
license = MIT
classifiers =
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Topic :: Software Development :: Libraries :: Python Modules
[options]
python_requires = >=3.8
install_requires =
pyflakes
packages = find:
scripts =
[options.extras_require]
dev =
bunch
nose
pycodestyle
black
isort
coverage
[options.entry_points]
console_scripts =
scame = scame.__main__:main