forked from eldarion/django-oauth-access
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 784 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 784 Bytes
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
from distutils.core import setup
setup(
name = "django-oauth-access",
version = "0.1.dev9",
author = "Eldarion",
author_email = "development@eldarion.com",
description = "centralized oAuth access to oAuth providers in Django",
long_description = open("README.rst").read(),
license = "BSD",
url = "http://github.com/eldarion/django-oauth-access",
packages = [
"oauth_access",
"oauth_access.utils",
],
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
]
)