-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
29 lines (26 loc) · 901 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
from setuptools import setup, find_packages
version = '2.1.2'
setup(name='Products.Maps',
version=version,
description="A simple, easy to use Plone integration with Google Maps "
"by Jarn AS.",
long_description=open("README.txt").read() + '\n' +
open('CHANGES.txt').read(),
classifiers=[
"Framework :: Zope2",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
],
keywords='Google Maps Zope Plone',
author='Florian Schulze',
author_email='[email protected]',
url='http://pypi.python.org/pypi/Products.Maps',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
],
)