aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2013-06-12 21:27:31 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2013-06-12 21:27:31 +0300
commitbfeb7cca8b747ec9fdaea5a12574a0275992e5f3 (patch)
tree428ad36d562d16bdcc236854c07c6338b2befe39
parentf4871e65add18240e32d05a5a9bbfbbd80fe97da (diff)
Add setup script.
-rw-r--r--crowdrest/__init__.py1
-rwxr-xr-xsetup.py23
2 files changed, 24 insertions, 0 deletions
diff --git a/crowdrest/__init__.py b/crowdrest/__init__.py
index e69de29..4113569 100644
--- a/crowdrest/__init__.py
+++ b/crowdrest/__init__.py
@@ -0,0 +1 @@
+__version__ = (0, 2, 0)
diff --git a/setup.py b/setup.py
new file mode 100755
index 0000000..f5450f4
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,23 @@
+#!/usr/bin/env python
+from setuptools import setup
+
+
+setup(
+ name="django-crowd-rest-backend",
+ version=":versiontools:crowdrest:__version__",
+ description="Django authentication backend for Atlassian Crowd REST API with groups support.",
+ classifiers=[
+ "Development Status :: 4 - Beta",
+ 'Environment :: Web Environment',
+ 'Framework :: Django',
+ 'Intended Audience :: Developers',
+ "Operating System :: OS Independent",
+ "Programming Language :: Python :: 2.6",
+ "Programming Language :: Python :: 2.7",
+ ],
+ zip_safe=True,
+ packages=['crowdrest'],
+ # dependencies
+ install_requires=['django >= 1.3'],
+ setup_requires=['versiontools >= 1.3.1'],
+)