forked from firdaus/temporal-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.14 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
import setuptools
from pkg_resources import parse_requirements
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="temporal-python-sdk",
version="1.0.19",
author="Mohammed Firdaus",
author_email="[email protected]",
description="Unofficial Python SDK for the Temporal Workflow Engine",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/firdaus/temporal-python-sdk",
packages=setuptools.find_packages(exclude=["cadence", "tests", "cadence.*", "tests.*"]),
install_requires=[
"betterproto-for-temporal-python-sdk==1.2.5",
"dataclasses-json==0.3.8",
"grpcio==1.30.0",
"grpclib==0.3.2",
"h2==3.2.0",
"more-itertools==7.0.0",
"pytz==2020.1",
"tblib==1.6.0"
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=True
)