forked from bartTC/django-wakawaka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 911 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
28
from setuptools import setup, find_packages
setup(
name='django-wakawaka',
version='0.4.dev1',
description='A super simple wiki app written in Python using the Django Framwork',
long_description=open('README.rst').read(),
author='Martin Mahner',
author_email='[email protected]',
url='http://github.com/bartTC/django-wakawaka/tree/master',
packages=find_packages('src', exclude=('wakawaka_project',)),
package_dir = {'': 'src'},
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',
],
package_data = {
'wakawaka': [
'templates/wakawaka/*.html',
]
},
zip_safe=False,
)