summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2021-02-25 11:33:05 -0600
committerJordan Cook <jordan.cook@pioneer.com>2021-02-26 16:02:38 -0600
commitadf5ec9bdf40c9ba0ebbe4c3310146888de430f7 (patch)
treef88f6b6758c192b11d713dbdf5c18fe8bf6c7b92 /setup.cfg
parentd7850551786e76e08c550b96897b40f5ad3f1778 (diff)
downloadrequests-cache-adf5ec9bdf40c9ba0ebbe4c3310146888de430f7.tar.gz
Move setuptools metadata to setup.cfg
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg31
1 files changed, 31 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 2a9acf1..ccaf78b 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,2 +1,33 @@
[bdist_wheel]
universal = 1
+
+[metadata]
+description = Persistent cache for requests library
+long_description = file: README.rst, HISTORY.rst
+long_description_content_type = text/x-rst
+keywords = requests, cache, persistence
+license = BSD License
+license_files = LICENSE
+python_requires = >=3.6
+classifiers =
+ Development Status :: 4 - Beta
+ Intended Audience :: Developers
+ License :: OSI Approved :: BSD License
+ Topic :: Software Development :: Libraries :: Python Modules
+ Natural Language :: English
+ Programming Language :: Python :: 3
+ Programming Language :: Python :: 3.6
+ Programming Language :: Python :: 3.7
+ Programming Language :: Python :: 3.8
+ Programming Language :: Python :: 3.9
+
+
+[flake8]
+max_line_length = 120
+exclude = __pycache__,.tox,build,dist,test,venv
+# Defer these rules to black:
+ignore =
+ E225 # missing whitespace around operator
+ E501 # line too long
+ W503 # line break before binary operator
+ W504 # line break after binary operator