-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
40 lines (36 loc) · 1.02 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
import os
from setuptools import setup, find_packages
import multilingual_news
try:
import multiprocessing # NOQA
except ImportError:
pass
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ''
setup(
name="django-multilingual-news",
version=multilingual_news.__version__,
description=read('DESCRIPTION'),
long_description=read('README.rst'),
license='The MIT License',
platforms=['OS Independent'],
keywords='django, news, blog, multilingual, cms',
author='Tobias Lorenz',
author_email='[email protected]',
url="https://github.com/bitmazk/django-multilingual-news",
packages=find_packages(),
include_package_data=True,
install_requires=[
'Django>=1.8.1',
'django-parler>=2.3',
'django-filer>=1.0.0',
'Pillow>=2.4.0',
'django-document-library',
'django-people>=1.1',
'django-multilingual-tags',
'django-cms>=3.0',
],
)