forked from IRI-Research/django-url-shortener
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 828 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
from setuptools import setup, find_packages
version = __import__('shortener').get_version()
setup(
version = version,
name = "django-url-shortener",
packages = find_packages(),
package_data = {
'': [],
'django-url-shortener/': ['templates/*.*'],
},
author = "Nilesh D Kapadia",
author_email = "Unknown",
description = "",
zip_safe=False,
license = "Free",
url = "http://nileshk.com/2009/06/02/url-shortener-web-app-using-django.html",
classifiers = [
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
install_requires = ["Django>=1.0"],
)