aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'],
+)