forked from mohawkhq/django-access-tokens
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (24 loc) · 813 Bytes
/
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
from distutils.core import setup
from access_tokens import __version__
version_str = ".".join(str(n) for n in __version__)
setup(
name = "django-access-tokens",
version = version_str,
license = "BSD",
description = "A Django app for for generating secure scoped access tokens.",
author = "Dave Hall",
author_email = "[email protected]",
url = "http://github.com/mohawkhq/django-access-tokens",
packages = [
"access_tokens",
],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
],
)