-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
35 lines (30 loc) · 1.15 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
from os.path import dirname, join
from setuptools import setup, find_packages
version = '0.2.3'
setup(
name = 'cmsplugin-phlog',
version = version,
description = "Django CMS Plugin for Photologue galleries",
long_description = open(join(dirname(__file__), 'README.rst')).read() + "\n" +
open(join(dirname(__file__), 'HISTORY.rst')).read(),
classifiers = [
"Framework :: Django",
"Development Status :: 3 - Alpha",
#"Development Status :: 4 - Beta",
#"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License"],
keywords = 'django cms plugin photologue',
author = 'Benjamin Liles',
author_email = '[email protected]',
url = 'https://github.com/benliles/cmsplugin-phlog',
packages = find_packages(),
include_package_data = True,
zip_safe = False,
install_requires = [
'setuptools',
'django-photologue>=2.3',
'django-cms>=2.1.0',],
)