forked from oliland/django-oauth-access
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 822 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 822 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
28
from distutils.core import setup
setup(
name = "django-oauth-access",
version = "0.1.dev19",
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.templatetags",
"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",
]
)