This repository has been archived by the owner on Jan 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
46 lines (43 loc) · 1.63 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from distutils.core import setup
from djangocms_reversion2 import __version__
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks',
]
REQUIREMENTS = [
'django>=1.8.17',
'django-cms>=3.4.3',
'diff-match-patch>=20110725.1',
'django-sekizai>=0.9.0'
]
setup(
name='djangocms-reversion2',
packages=find_packages(exclude=('test_app', 'docs')),
include_package_data=True,
version=__version__,
description='page versioning for django-cms',
author='Daniel Pollithy',
author_email='[email protected]',
url='https://github.com/Blueshoe/djangocms-reversion2',
download_url='https://github.com/Blueshoe/djangocms-reversion2/archive/{}.zip'.format(__version__),
install_requires=REQUIREMENTS,
keywords=['django', 'Django CMS', 'version history', 'versioning',
'reversion', 'revision', 'CMS', 'Blueshoe', 'basket', 'bin', 'revert'],
classifiers=CLASSIFIERS,
test_suite='tests.settings.run',
)