forked from evildmp/Arkestra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 673 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 673 Bytes
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
from setuptools import setup, find_packages
from os.path import join, dirname
setup(
name='Arkestra',
version='2.0.0',
author='Daniele Procida',
author_email='daniele@vurt.org',
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',
'django-typogrify',
'BeautifulSoup',
'django-cms == 2.3.4',
'django-filer',
'semanticeditor',
'pillow',
]
)