-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (42 loc) · 1.42 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
41
42
43
44
import os
from setuptools import setup
from setuptools import find_packages
version = '0.1.dev0'
setup(
name='collective.tilesandstyles',
version=version,
description="A dropdown menu for the top menu populated with content from pages",
long_description=open("README.rst").read() + "\n" +
open("CHANGELOG.rst").read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Plone',
'Framework :: Plone :: 5.0',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='plone menu overlay megamenu dropdown',
author='Martin Reistadbakk, Blåstolen AS',
author_email='[email protected]',
url='https://github.com/collective/collective.tilesandstyles',
license='BSD',
packages=find_packages(),
namespace_packages=['collective'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'plone.app.standardtiles',
'plone.app.mosaic',
],
extras_require={
'test': ['plone.testing [zca, z2]', 'unittest2'],
},
entry_points="""
""",
)