-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 696 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(name='django-project-template',
version='0.1',
author='Steingrim Dovland',
author_email='steingrd@ifi.uio.no',
url='http://prettyprinted.net/code/django-project-template/',
scripts=['scripts/django-project-template.py'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Utilities'])