-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add docs on how to configure pyproject.toml and style
- Loading branch information
1 parent
4701b86
commit 4a1d221
Showing
3 changed files
with
79 additions
and
14 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
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
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
|
||
# Package meta-data. | ||
NAME = "flake8_nitpick" | ||
DESCRIPTION = "Flake8 plugin to share the same code style for multiple Python projects" | ||
DESCRIPTION = "Flake8 plugin to reuse the same lint configuration across multiple Python projects" | ||
URL = "https://github.com/andreoliwa/flake8-nitpick" | ||
EMAIL = "[email protected]" | ||
AUTHOR = "W. Augusto Andreoli" | ||
|
@@ -105,12 +105,17 @@ def run(self): | |
classifiers=[ | ||
# Trove classifiers | ||
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
"Development Status :: 3 - Alpha", | ||
"Environment :: Plugins", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: MacOS", | ||
"Operating System :: Unix", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Topic :: Software Development :: Quality Assurance", | ||
], | ||
# $ setup.py publish support. | ||
cmdclass={"upload": UploadCommand}, | ||
|