-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·40 lines (37 loc) · 1.26 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
from setuptools import setup, find_packages
import os
import djangocms_career
REQUIREMENTS = [
'Django>=1.6,<=1.10',
'django-cms>=3.0.12',
'djangocms-text-ckeditor>=2.8.1',
'python-dateutil>=2.5.2',
]
CLASSIFIERS = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
setup(
author="Dominic Monn",
author_email="[email protected]",
name='djangocms-career',
version=djangocms_career.__version__,
description='Django CMS Plugin to showcase a career or educational paths on portfolio and CV-Websites.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
url='https://github.com/dmonn/djangocms-career/',
license='BSD License',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=REQUIREMENTS,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)