-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
77 lines (72 loc) · 2.11 KB
/
setup.py
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
"""A setuptools based setup module."""
from os import path
from setuptools import setup
from yala import __version__
HERE = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(HERE, "README.rst"), encoding="ascii") as f:
LONG_DESC = f.read()
setup(
name="yala",
version=__version__,
description="Yet Another Linter Aggregator",
long_description=LONG_DESC,
url="https://github.com/cemsbr/yala",
author="Carlos Eduardo Moreira dos Santos",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
],
keywords="linter check quality",
packages=["yala"],
install_requires=[
"docopt",
"isort>=5", # deprecated --recursive flag
"pycodestyle",
"pylint",
],
extras_require={
"all": [
"mypy",
"pydocstyle",
"pyflakes",
"radon",
],
"flake8": ["flake8", "flake8-polyfill"],
"mypy": ["mypy"],
"pydocstyle": ["pydocstyle"],
"pyflakes": ["pyflakes"],
"pylint": ["pylint"],
"radon": ["radon"],
"black": ["black"],
"dev": [
"bandit",
"coverage",
"eradicate",
"rstcheck",
"safety",
"tox",
],
},
package_data={
"yala": ["setup.cfg", "logging.ini"],
},
entry_points={
"console_scripts": [
"yala=yala.main:main",
],
},
test_suite="tests",
)