forked from macagua/collective.spanishdocumentation
-
Notifications
You must be signed in to change notification settings - Fork 122
/
setup.py
50 lines (48 loc) · 1.81 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
45
46
47
48
49
50
from setuptools import setup, find_packages
#
# Note: This file does not really serve any purpose
# it just keeps some tools happy
#
import os
version = '0.1rc'
setup(name='collective.spanishdocumentation',
version=version,
description="Plone Spanish Documentation",
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Framework :: Plone :: 3.3",
"Framework :: Plone :: 4.0",
"Framework :: Plone :: 4.1",
"Framework :: Plone :: 4.2",
"Framework :: Plone :: 4.3",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Natural Language :: Spanish",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Documentation",
"Topic :: Education",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Installation/Setup",
],
keywords='Plone Spanish Documentation Sphinx rst',
author='Carlos de la Guardia, Leonardo J. Caballero G. & Plone Spanish community contributors',
author_email='carlos.delaguardia@gmail.com, leonardocaballero@gmail.com, usuarios-plone@lists.plone.org',
url='http://plone.es/',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
)