forked from demianbrecht/sanction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·31 lines (28 loc) · 1.01 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
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.rst")).read()
requires = []
setup(name="sanction",
keywords="python,oauth2",
version="0.1.1",
description="A simple, lightweight OAuth2 client",
author="Demian Brecht",
author_email="[email protected]",
url="https://github.com/demianbrecht/sanction",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration :: Authentication/Directory"
],
long_description=README,
install_requires=requires,
packages=["sanction",]
)