-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 829 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
# hook to find setup tools if not installed
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name = "django-chronograph",
version = "svn-r21-git.2",
packages = find_packages(),
include_package_data=True,
zip_safe=False,
description='Django chronograph application.',
author='Weston Nielson',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
url = "http://code.google.com/p/django-chronograph/", # project home page, if any
)