forked from justinasjaronis/Arkestra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 959 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
29
30
31
from setuptools import setup, find_packages
from os.path import join, dirname
setup(
name='Arkestra',
version='2.0.0',
author='Daniele Procida',
author_email='[email protected]',
packages=find_packages(exclude=["example"]), # exclude the example project
include_package_data=True,
zip_safe=False,
license='LICENSE.txt',
description='A semantic web publishing system for organisations',
long_description=open(join(dirname(__file__), 'README.txt')).read(),
install_requires=[
'django >= 1.4, <=1.4.10',
'django-typogrify',
'BeautifulSoup',
'django-cms == 2.3.5',
'django-filer',
'semanticeditor',
'pillow',
'django-pagination',
'django-easyfilters',
'django-treeadmin',
'django-widgetry',
],
dependency_links=[
'https://github.com/evildmp/django-widgetry/archive/master.zip#egg=django-widgetry-0.9.2a1'
],
)