-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
39 lines (34 loc) · 1.11 KB
/
setup.cfg
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
[metadata]
name = falcon-ratelimit
long-description = file: README.md
long-description-content-type = text/markdown; charset=UTF-8
author = Piotr Maślanka
author_email = [email protected]
description = Rate limiter for Falcon framework
url = https://github.com/piotrmaslanka/falcon-ratelimit
classifier =
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Operating System :: OS Independent
Development Status :: 4 - Beta
License :: OSI Approved :: MIT License
Topic :: Software Development :: Libraries
Topic :: Internet :: WWW/HTTP :: Session
[pycodestyle]
max-line-length = 80
[bdist_wheel]
universal = 1
[nosetests]
verbosity = 2
with-coverage = 1
detailed-errors = 1
[isort]
add_imports =
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals