-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·66 lines (64 loc) · 2.23 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
#!/usr/bin/env python
import collections
import pathlib
from setuptools import setup
setup(
name="black-configparser",
version="0.2.0b2",
author="Daniel Kuruc",
author_email="[email protected]",
license="MIT",
url="https://github.com/danie1k/python-black-configparser",
project_urls=collections.OrderedDict(
(
("Code", "https://github.com/danie1k/python-black-configparser"),
(
"Issue tracker",
"https://github.com/danie1k/python-black-configparser/issues",
),
)
),
description=(
'Seamless Proxy CLI for black ("The uncompromising code formatter") '
"with support for non-pyproject.toml config files"
),
long_description=(pathlib.Path(__file__).parent / "README.md").read_text("utf8"),
long_description_content_type="text/markdown",
keywords=(
"automation formatter yapf autopep8 pyfmt gofmt rustfmt black white brunette"
),
package_dir={"black_configparser": "black_configparser"},
packages=["black_configparser"],
package_data={"black_configparser": ("py.typed",)},
python_requires=">=3.6",
install_requires=("black>=18.6b2",),
extras_require={
"lint": (
"black>=18.6b2",
"flake8>=3.8.0",
"isort>=5.6.0",
"mypy>=0.790",
"pylint>=2.6.0",
),
"tests": ("coverage>=5.0", "pytest>=6.0", "pytest-sugar>=0.9"),
},
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
],
entry_points={
"console_scripts": ["black=black_configparser.black_configparser:main"]
},
)