Commit a386ee1f authored by Rafael Monnerat's avatar Rafael Monnerat

Remove setup.py from handlers.

parent 4930a973
from setuptools import setup, find_packages
name = "cloudooo.handler.ffmpeg"
version = '0.1'
def read(name):
return open(name).read()
long_description = (read('README.txt') + '\n' + read('CHANGES.txt'))
install_requires = ["zope.interface",
"cloudooo",
"python-magic", # required for unit tests only
]
setup(
name = name,
version = version,
author = "Gabriel M. Monnerat",
author_email = "gabriel@tiolive.com",
description = "Python Package to handle Videos",
long_description=long_description,
license = "GPLv3",
keywords = "python ffmpeg",
classifiers=[
"Programming Language :: Python :: 2.6",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License (GPL)",
],
packages = find_packages('src'),
package_dir = {'': 'src'},
url = 'http://svn.erp5.org/repos/public/erp5/trunk/utils/cloudooo.handler.ffmpeg',
include_package_data = True,
namespace_packages = ["cloudooo", "cloudooo.handler"],
install_requires=install_requires,
entry_points="""
[console_scripts]
runFFMPEGHandlerUnitTest = cloudooo.handler.ffmpeg.tests.runFFMPEGHandlerUnitTest:run
""",)
from setuptools import setup, find_packages
name = "cloudooo.handler.imagemagick"
version = '0.1'
def read(name):
return open(name).read()
long_description=(read('README.txt')
+ '\n' +
read('CHANGES.txt')
)
install_requires = ["zope.interface",
"cloudooo",
"python-magic", # required for unit tests only
]
setup(
name = name,
version = version,
author = "Gabriel M. Monnerat",
author_email = "gabriel@tiolive.com",
description = "Python Package to handle Images",
long_description=long_description,
license = "GPLv3",
keywords = "python imagemagick",
classifiers=[
"Programming Language :: Python :: 2.6",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License (GPL)",
],
packages = find_packages('src'),
package_dir = {'': 'src'},
url = 'http://svn.erp5.org/repos/public/erp5/trunk/utils/cloudooo.handler.imagemagick',
install_requires = install_requires,
include_package_data = True,
namespace_packages = ["cloudooo", "cloudooo.handler"],
entry_points="""
[console_scripts]
runImageMagickHandlerUnitTest = cloudooo.handler.imagemagick.tests.runImageMagickHandlerUnitTest:run
""",
)
import sys
from setuptools import setup, find_packages
name = "cloudooo.handler.ooo"
version = '0.2'
def read(name):
return open(name).read()
long_description = (read('README.txt') + '\n' + read('CHANGES.txt'))
install_requires = ["zope.interface",
"psutil>=0.2.0",
"lxml",
"cloudooo",
"python-magic", # required for unit tests only
]
if sys.version_info < (2, 5):
install_requires.append('simplejson')
setup(
name = name,
version = version,
author = "Gabriel M. Monnerat",
author_email = "gabriel@tiolive.com",
description = "Cloudooo plugin to handle Documents with OpenOffice.org"\
" or LibreOffice",
long_description=long_description,
license = "GPLv3",
keywords = "cloudooo OpenOffice.org LibreOffice",
classifiers= [
"Programming Language :: Python :: 2.6",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License (GPL)",
],
packages = find_packages('src'),
package_dir = {'': 'src'},
url = 'http://svn.erp5.org/repos/public/erp5/trunk/utils/cloudooo.handler.ooo',
namespace_packages = ["cloudooo", "cloudooo.handler"],
include_package_data = True,
install_requires=install_requires,
entry_points="""
[console_scripts]
runOOoHandlerUnitTest = cloudooo.handler.ooo.tests.runOOoHandlerUnitTest:run
""")
from setuptools import setup, find_packages
name = "cloudooo.handler.pdf"
version = '0.1'
def read(name):
return open(name).read()
long_description=(read('README.txt')
+ '\n' +
read('CHANGES.txt')
)
install_requires = ["zope.interface",
"cloudooo",
"python-magic", # required for unit tests only
]
setup(
name = name,
version = version,
author = "Gabriel M. Monnerat",
author_email = "gabriel@tiolive.com",
description = "Python Package to handler PDF documents",
long_description=long_description,
license = "GPLv3",
keywords = "python xpdf",
classifiers=[
"Programming Language :: Python :: 2.6",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License (GPL)",
],
packages = find_packages('src'),
url = 'http://svn.erp5.org/repos/public/erp5/trunk/utils/cloudooo.handler.pdf',
include_package_data = True,
package_dir = {'': 'src'},
install_requires = ['setuptools'],
namespace_packages = ["cloudooo", "cloudooo.handler"],
entry_points="""
[console_scripts]
runPDFHandlerUnitTest = cloudooo.handler.pdf.tests.runPDFHandlerUnitTest:run
""",
)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment