This repository was archived by the owner on Mar 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
49 lines (45 loc) · 1.37 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
39
40
41
42
43
44
45
46
47
48
49
"""Setuptools entry point."""
import codecs
from setuptools import setup, find_packages
from os.path import join, dirname
tests_require = [
'pytest==2.7.2',
'pytest-cov==1.8.1',
'pytest-cache==1.0',
'pytest-django==2.8.0',
'pytest-pythonpath==0.7'
]
descriptions = []
for filename in ('README.rst', 'CHANGES.rst', 'CONTRIBUTORS.rst'):
with codecs.open(join(dirname(__file__), filename), encoding='utf-8') as fd:
descriptions.append(fd.read())
setup(
name='Arkestra',
version='2.0.0',
author='Daniele Procida',
author_email='[email protected]',
packages=find_packages(exclude=["example", "tests"]), # exclude the example project
include_package_data=True,
zip_safe=False,
license='LICENSE.txt',
description='A semantic web publishing system for organisations',
long_description="\n".join(descriptions),
tests_require=tests_require,
extras_require={'test': tests_require},
install_requires=[
'django >= 1.4, <=1.4.10',
'easy-thumbnails==1.5',
'django-typogrify',
'BeautifulSoup',
'django-cms==2.3.5',
'django-filer==0.9.4',
'semanticeditor',
'pillow',
'django-pagination',
'django-easyfilters',
'django-treeadmin',
'django-widgetry',
'django-chained-selectbox',
'django-polymorphic==0.5.6',
],
)