forked from bohea/sanic-limiter
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 897 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 897 Bytes
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
from setuptools import setup
import os
this_dir = os.path.abspath(os.path.dirname(__file__))
REQUIREMENTS = filter(None, open(
os.path.join(this_dir, 'requirements.txt')).read().splitlines())
setup(
name='sanic_limiter',
version='0.1.4',
description='Provides rate limiting features for Sanic. Supports in-memory, redis and memcache as storage.',
url='https://github.com/bohea/sanic-limiter',
author='bohea',
author_email='libin375@163.com',
license='MIT',
packages=['sanic_limiter'],
install_requires=list(REQUIREMENTS),
zip_safe=False,
keywords=['rate', 'limit', 'sanic', 'redis', 'memcache'],
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)