aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..98f27ec
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,31 @@
+import os
+from setuptools import setup, find_packages
+
+def read(fname):
+ return open(os.path.join(os.path.dirname(__file__), fname)).read()
+
+setup(
+ name = "django-shorturls",
+ version = "1.0",
+ url = 'http://github.com/jacobian/django-shorturls',
+ license = 'BSD',
+ description = "A short URL (rev=cannonical) handler for Django apps.",
+ long_description = read('README'),
+
+ author = 'Simon Willison, Jacob Kaplan-Moss',
+ author_email = 'jacob@jacobian.org',
+
+ packages = find_packages('src'),
+ package_dir = {'': 'src'},
+
+ install_requires = ['setuptools'],
+
+ classifiers = [
+ 'Development Status :: 4 - Beta',
+ 'Intended Audience :: Developers',
+ 'License :: OSI Approved :: BSD License',
+ 'Operating System :: OS Independent',
+ 'Programming Language :: Python',
+ 'Topic :: Internet',
+ ]
+) \ No newline at end of file