forked from jasjukaitis/cmsplugin-photologue-pro
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 839 Bytes
/
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
import os
from setuptools import setup, find_packages
setup(
name='cmsplugin-photologue-pro',
version='0.1.0',
description='Photo gallery plugin for Django CMS',
long_description=open(os.path.join(os.path.dirname(__file__),
'README.rst')).read(),
author='Raphael Jasjukaitis',
author_email='[email protected]',
url='https://github.com/raphaa/cmsplugin-photologue-pro',
packages=find_packages(),
classifiers=[
'Environment :: Web Environment',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe=False,
include_package_data=True,
install_requires=[
'django-cms',
'django-photologue'
]
)