forked from django-fluent/django-fluent-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·36 lines (30 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-fluent-pages',
version='0.1.0',
license='Apache License, Version 2.0',
install_requires=[
'Django>=1.3.0',
'django-mptt>=0.5.1',
'django-polymorphic-tree>=0.8.2',
],
description='A page tree structure to display various content in.',
long_description=open('README.rst').read(),
author='Diederik van der Boor',
author_email='[email protected]',
url='https://github.com/edoburu/django-fluent-pages',
download_url='https://github.com/edoburu/django-fluent-pages/zipball/master',
packages=find_packages(exclude=('example*',)),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)