forked from alisaifee/flask-limiter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (27 loc) · 940 Bytes
/
setup.py
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
"""
setup.py for Flask-Limiter
"""
__author__ = "Ali-Akber Saifee"
__email__ = "[email protected]"
__copyright__ = "Copyright 2014, Ali-Akber Saifee"
from setuptools import setup, find_packages
import os
import versioneer
this_dir = os.path.abspath(os.path.dirname(__file__))
REQUIREMENTS = filter(None, open(
os.path.join(this_dir, 'requirements', 'main.txt')).read().splitlines())
setup(
name='Flask-Limiter',
author=__author__,
author_email=__email__,
license="MIT",
url="https://flask-limiter.readthedocs.org",
zip_safe=False,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
install_requires=list(REQUIREMENTS),
classifiers=[k for k in open('CLASSIFIERS').read().split('\n') if k],
description='Rate limiting for flask applications',
long_description=open('README.rst').read() + open('HISTORY.rst').read(),
packages=find_packages(exclude=["tests*"]),
)