forked from orsinium-labs/flake8-todos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (40 loc) · 1.44 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (40 loc) · 1.44 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
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os.path
readme = ''
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, 'README.rst')
if os.path.exists(readme_path):
with open(readme_path, 'rb') as stream:
readme = stream.read().decode('utf8')
setup(
long_description=readme,
name='flake8-todos',
version='0.1.5',
python_requires='>=3.6',
project_urls={"homepage": "https://github.com/orsinium-labs/flake8-todos"},
author='Gram',
author_email='gram@orsinium.dev',
license='BSD 3-Clause',
keywords='flake8 flake8-plugin linter styleguide code quality',
classifiers=[
'Development Status :: 4 - Beta', 'Environment :: Console',
'Framework :: Flake8', 'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
'License :: OSI Approved :: BSD License'
],
entry_points={"flake8.extension": ["Z00 = flake8_todos:Checker"]},
packages=['flake8_todos'],
package_dir={"": "."},
package_data={},
install_requires=['flake8', 'pycodestyle'],
extras_require={"dev": ["isort[pyproject]", "pytest"]},
)