forked from django-fiber/django-fiber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (31 loc) · 1.17 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
37
38
from setuptools import setup, find_packages
setup(
name='django-fiber',
version=__import__('fiber').__version__,
license='Apache License, Version 2.0',
install_requires=[
'PIL>=1.1.7',
'django-piston==0.2.3rc1',
'django-mptt>=0.4.2',
'django-compressor>=0.7.1',
],
dependency_links=['http://bitbucket.org/brodie/django-piston/get/c4e6eb8f7eb5.tar.gz#egg=django-piston-0.2.3rc1'],
description='Django Fiber - a simple, user-friendly CMS for all your Django projects',
long_description=open('README.rst').read(),
author='Dennis Bunskoek',
author_email='[email protected]',
url='https://github.com/ridethepony/django-fiber',
download_url='https://github.com/ridethepony/django-fiber/zipball/master',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)