-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c6cd6d5
commit 10c4b6c
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,29 @@ | ||
[tool.poetry] | ||
name = "flake8-too-many" | ||
version = "0.1.0-alpha.0" | ||
|
||
description = "A flake8 plugin that prevents you from writing \"too many\" bad codes." | ||
readme = "README.md" | ||
license = "MIT" | ||
|
||
authors = ["Queensferry <[email protected]>"] | ||
|
||
repository = "https://github.com/queensferryme/flake8-too-many" | ||
homepage = "https://github.com/queensferryme/flake8-too-many" | ||
keywords = ["code quality", "flake8", "linting", "plugin"] | ||
|
||
classifiers = [ | ||
"Environment :: Console", | ||
"Framework :: Flake8", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Software Development :: Quality Assurance", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.6.1" | ||
dataclasses = {version = "^0.8", python = "< 3.7"} | ||
|