forked from e621-Inc/django-cmsplugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (37 loc) · 1.18 KB
/
setup.py
File metadata and controls
44 lines (37 loc) · 1.18 KB
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
from __future__ import unicode_literals
import os
from setuptools import find_packages, setup
version = __import__('cmsplugins').__version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="django-cmsplugins",
version=version,
url='http://github.com/rouxcode/django-cmsplugins',
license='MIT',
platforms=['OS Independent'],
description='Django CMS plugin collection',
long_description=read('README.rst'),
author=u'Alaric Maegerle',
author_email='info@rouxcode.ch',
packages=find_packages(exclude=['testproject', 'testproject.*']),
install_requires=(
'cssselect>=0.9.2',
'Django>=1.11,<2.0',
'django-cms>=3.4,<3.6',
'django-filer>=1.3.0',
'googlemaps>=2.4.4',
'lxml>=3.6.4',
),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
)