This repository has been archived by the owner on Jul 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
55 lines (48 loc) · 1.54 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
53
54
55
"""
Zenaton client library
"""
from __future__ import absolute_import, print_function, unicode_literals
import os
from io import open
from setuptools import find_packages, setup
import zenaton
def read(filename):
path = os.path.join(os.path.dirname(__file__), filename)
with open(path, encoding='utf-8') as f:
return f.read()
TEST_DEPS = [
'freezegun',
'pytest',
'pytest_mock',
'python-dotenv',
]
setup(
name='zenaton',
version=zenaton.__version__,
author='Zenaton',
author_email='[email protected]',
description='Zenaton client library',
long_description=read('README.md') + '\n' + read('CHANGELOG.md'),
long_description_content_type='text/markdown',
keywords=['workflow engine', 'workflows', 'orchestration', 'event-driven architecture', 'queuing systems', 'orchestration engine', 'background jobs', 'hosted queues', 'queues', 'jobs', 'asynchronous tasks'],
url='https://zenaton.com/',
license='Apache License, Version 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries',
],
packages=find_packages(),
include_package_data=True,
python_requires='>=3',
install_requires=[
'requests',
'pytz'
],
tests_require=TEST_DEPS,
extras_require={'test': TEST_DEPS},
zip_safe=False
)