-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
52 lines (47 loc) · 1.62 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
51
52
from setuptools import setup, find_packages
version = '1.2.6-dev'
def read(name):
return open(name).read()
long_description = (read('README.rst') + '\n' + read('CHANGELOG.rst'))
install_requires = [
# -*- Extra requirements: -*-
'zope.interface',
'PasteDeploy',
'PasteScript[WSGIUtils]',
'pyPdf>=3.6.0',
'psutil>=3.0.0',
'lxml',
'python-magic',
'argparse',
'erp5.util'
]
setup(name='cloudooo',
version=version,
description="XML-RPC document conversion server",
long_description=long_description,
classifiers=[
"Topic :: System :: Networking",
"Topic :: System :: Operating System Kernels :: Linux",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Programming Language :: Python :: 3",
"Natural Language :: English",
"Framework :: Paste"],
keywords='xmlrpc openoffice wsgi paste python',
author='Gabriel M. Monnerat',
author_email='gabriel@nexedi.com',
url='https://lab.nexedi.com/nexedi/cloudooo.git',
license='GPLv3+ with wide exception for FOSS',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
python_requires='>=3.8',
entry_points="""
[paste.app_factory]
main = cloudooo.paster_application:application
[console_scripts]
cloudooo_tester = cloudooo.bin.cloudooo_tester:main
echo_cloudooo_conf = cloudooo.bin.echo_cloudooo_conf:main
runCloudoooUnitTest = cloudooo.tests.runHandlerUnitTest:run
""",
)