-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (41 loc) · 1.17 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
from setuptools import setup, find_packages
import os
version = '0.1a1dev'
install_requires = [
'setuptools',
'python-daemon',
'pyinotify',
'pycurl',
]
tests_require = [
'pytest',
'z3c.rml',
]
setup(name='document_chain',
version=version,
description="A simple document chain processing",
long_description=open("README.rst").read() + "\n" +
open(os.path.join("docs", "HISTORY.rst")).read(),
classifiers=[
"Programming Language :: Python",
],
keywords='Document processing',
author='Tarentis',
author_email='[email protected]',
url='http://tarentis.fr',
license='GPL',
packages=find_packages('src', exclude=['ez_setup']),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
tests_require=tests_require,
install_requires=install_requires,
extras_require={'test': tests_require},
entry_points="""
# -*- Entry points: -*-
[console_scripts]
runner = document_chain.runner:main
[paste.app_factory]
wait_task = document_chain.wsgi_wait:WSGIWaitTask.app_factory
""",
)