-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (34 loc) · 1.15 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
import os
from setuptools import setup
setup(
name="oauth2-stateless",
version="1.1.2",
description="OAuth 2.0 provider for python with Stateless tokens support",
long_description=open("README.md").read(),
author="Andrew Grytsenko",
author_email="[email protected]",
url="https://github.com/darkanthey/oauth2-stateless",
packages=[
d[0].replace("/", ".")
for d in os.walk("oauth2")
if not d[0].endswith("__pycache__")
],
install_requires=["ujson", "itsdangerous"],
extras_require={
"memcache": ["python-memcached"],
"mongodb": ["pymongo"],
"redis": ["redis"],
},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)