Skip to content

Commit

Permalink
Actualuzar script setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
macagua committed Sep 11, 2019
1 parent 5d215d4 commit c347123
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,30 +1,26 @@
from setuptools import setup, find_packages
#
# Note: This file does not really serve any purpose
# it just keeps some tools happy
#
import os
from setuptools import setup, find_packages


version = '0.1'

setup(name='cenditel.documentation',
setup(name='cenditel.docs',
version=version,
description="Cenditel Foundation Plone Products Documentation in Sphinx format",
#long_description=open("README.txt").read() + "\n",
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
# long_description=open("README.rst").read() + "\n",
# Get more strings from https://pypi.org/classifiers/
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='cenditel foundation, plone, products, documentation, ppm, audio, video, multimedia',
author='Oswaldo Lopez, Víctor Terán Herrera, Leonardo J. Caballer G.',
author='Víctor Terán Herrera, Oswaldo Lopez, Leonardo J. Caballer G.',
author_email='elalcon89@gmail.com, oswaldolo@hotmail.com, leonardocaballero@gmail.com',
maintainer='Leonardo J. Caballero G.',
maintainer_email='leonardocaballero@gmail.com',
url='http://plataforma.cenditel.gob.ve/wiki/Plone',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
#namespace_packages=['gomobiletheme'],
include_package_data=True,
zip_safe=False,
install_requires=[
Expand All @@ -34,4 +30,4 @@
entry_points="""
# -*- Entry points: -*-
""",
)
)

0 comments on commit c347123

Please sign in to comment.