mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-04 20:26:53 +00:00
initial commit
This commit is contained in:
commit
0da965fa72
15 changed files with 3843 additions and 0 deletions
20
setup.py
Executable file
20
setup.py
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
from distutils.core import setup
|
||||
|
||||
setup(
|
||||
name="flake8",
|
||||
license="MIT",
|
||||
version="0.1",
|
||||
description="code checking",
|
||||
author="Tarek Ziade",
|
||||
url="http://bitbucket.org/tarek/flake8",
|
||||
packages=["flake8", "flake8.scripts", "flake8.test"],
|
||||
scripts=["bin/flake8"],
|
||||
long_description=README,
|
||||
classifiers=[
|
||||
"Environment :: Console",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Programming Language :: Python",
|
||||
"Topic :: Software Development",
|
||||
"Topic :: Utilities",
|
||||
])
|
||||
Loading…
Add table
Add a link
Reference in a new issue