-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (17 loc) · 758 Bytes
/
Copy pathsetup.py
File metadata and controls
18 lines (17 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from distutils.core import setup
setup(name='django-nanocms',
version='0.1',
description='Simple replacement for faltapages',
author='Piotr Markiewicz',
author_email='piotr.markiewicz@gmail.com',
#url='http://code.google.com/p/django-contact-form/',
packages=['nanocms'],
classifiers=['Development Status :: 1 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
package_data={'nanocms': ['templates/*']},
)