-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.37 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
#!/usr/bin/env python
from setuptools import setup
with open("README.md") as fl:
LONG_DESCRIPTION = fl.read()
PROJECT_URLS = {
"Bug Tracker": "https://github.com/asherf/flake8-os-walk/issues",
"Source Code": "https://github.com/asherf/flake8-os-walk",
}
setup(
name="flake8-os-walk",
version="0.4.0",
description="Flake8 plugin which usage of os.walk().",
author="Asher Foa",
author_email="asher@asherfoa.com",
url="https://github.com/asherf/flake8-os-walk",
long_description=LONG_DESCRIPTION,
project_urls=PROJECT_URLS,
long_description_content_type="text/markdown",
packages=["flake8_os_walk"],
keywords="flake8",
entry_points={"flake8.extension": ["OW = flake8_os_walk.checker:OSWalkChecker"]},
install_requires=["flake8>=3.7"],
tests_require=["coverage", "pytest"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Framework :: Flake8",
],
)