-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
36 lines (35 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
from setuptools import find_packages, setup
setup(
name="ghmirror",
packages=find_packages(),
version=open("VERSION", encoding="locale").read().strip(),
author="Red Hat Application SRE Team",
author_email="[email protected]",
description="GitHub API mirror that caches the responses and implements "
"conditional requests, serving the client with the cached "
"responses when the GitHub API replies with a 304 HTTP "
"code, reducing the number of API calls, making a more "
"efficient use of the GitHub API rate limit.",
python_requires=">=3.11",
license="GPLv2+",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
],
install_requires=[
"Flask~=3.0.3",
"requests~=2.32.3",
"prometheus_client~=0.20",
"gunicorn==22.0.0",
"redis~=5.0.4",
],
)