forked from sontek-archive/django-tekextensions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
23 lines (22 loc) · 748 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='django-tekextensions',
version=__import__('tekextensions').__version__,
description='A set of re-usable widgets and commands for django',
long_description='',
author='John Anderson',
author_email='sontek@gmail.com',
url='http://github.com/adamestein/django-tekextensions',
download_url='http://github.com/adamestein/django-tekextensions',
license='BSD',
packages=['tekextensions'],
classifiers = [
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)