-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
executable file
·32 lines (29 loc) · 1.07 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
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README")).read()
README = README + open(os.path.join(here, "CHANGES")).read()
requires = []
setup(name="sanction",
keywords="python,oauth2",
version="0.4.1",
description="A simple, lightweight OAuth2 client",
author="Demian Brecht",
author_email="demianbrecht@gmail.com",
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",]
)