-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (39 loc) · 1.33 KB
/
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
34
35
36
37
38
39
40
from setuptools import setup, find_packages
setup(
name='fastapi-frl',
version='0.0.5',
description='Rate limiter library for FastAPI.',
author='byunjuneseok',
author_email='[email protected]',
license='MIT',
url='https://github.com/byunjuneseok/fastapi-frl',
install_requires=[
'aioredis==2.0.1',
'fastapi'
],
packages=find_packages(),
keywords=['fastapi', 'limiter'],
python_requires='>=3.7',
package_data={},
zip_safe=False,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Environment :: Console',
'Environment :: MacOS X',
'Framework :: Hypothesis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
],
)