-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (28 loc) · 897 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
29
30
31
32
# -*- coding: utf-8 -*-
version = '0.3.dev0'
from setuptools import setup, find_packages
long_description = (open('README.rst').read() + '\n')
setup(name='ipplf.skin',
version=version,
description="Skin package for IPPLF website",
long_description=long_description,
classifiers=[
"Environment :: Web Environment",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Framework :: Plone",
"Framework :: Plone :: 4.3",
],
keywords='Affinitic',
author='Affinitic',
author_email='[email protected]',
url='https://github.com/affinitic/ipplf.skin',
license='gpl',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Plone',
'plone.app.themingplugins',
])