-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 1.05 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
import setuptools
from flake8_no_u_prefixed_strings import __version__
setuptools.setup(
name="flake8-no-u-prefixed-strings",
license='GNU General Public License v3 (GPLv3)',
version=__version__,
description="Detects and warns about invalid escape sequences.",
author="5j9",
author_email="5j9@users.noreply.github.com",
url="/~https://github.com/5j9/flake8-no-u-prefixed-strings",
packages=["flake8_no_u_prefixed_strings"],
install_requires=["flake8 > 3.0.0"],
entry_points={
'flake8.extension': ['UPS=flake8_no_u_prefixed_strings:plugin'],
},
classifiers=[
"Framework :: Flake8",
"Environment :: Console",
"Intended Audience :: Developers",
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
],
)