-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 745 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
setup(
name = 'django-contact',
version = '0.4',
url = 'http://github.com/rcoyner/django-contact/',
author = 'Ryan Coyner',
author_email = 'rcoyner@gmail.com',
description = 'Generic contact form application for Django',
packages = ['contact'],
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)