-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
42 lines (38 loc) · 1.06 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
40
41
42
[metadata]
name = rush
;version = attr: rush.__version__
description = A library for throttling algorithms
long_description = file: README.rst
long_description_content_type = text/x-rst
home_page = https://github.com/sigmavirus24/rush
author = Ian Stapleton Cordasco
author_email = [email protected]
keywords = throttles throttle algorithm gcra redis
license = MIT
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
[options]
python_requires = >= 3.6
include_package_data = True
packages = find:
; Presently setuptools needs package-dir defined here and in setup.py
; https://github.com/pypa/setuptools/issues/1136
package_dir =
= src
install_requires =
attrs >= 18.1.0
[options.package_data]
rush = py.typed
[options.packages.find]
where = src
[options.extras_require]
redis =
redis
rfc3986 >= 1.2.0