forked from urbanairship/django-finial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.05 KB
/
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
29
30
31
32
33
34
35
36
# (c) 2013 Urban Airship and Contributors
from setuptools import setup, find_packages
from finial import VERSION
setup(
name='django-finial',
version='.'.join(map(str, VERSION)),
description='Template, Static, and URL Overrides per User.',
long_description=open('README.md').read(),
author='Gavin McQuillan',
author_email='gavin@urbanairship.com',
url='http://github.com/urbanairship/django-finial',
license='BSD',
packages=find_packages(),
include_package_data=True,
package_data = { '': ['README.md'] },
zip_safe=False,
install_requires=[
'django',
'South',
'simplejson',
'mimic',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)