FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sdk-python/setup.py at main · open-workflow-specification/sdk-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
open-workflow-specification
/
sdk-python
Public
Notifications
You must be signed in to change notification settings
Fork
11
Star
30
Code
Issues
7
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
sdk-python
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
20 lines (18 loc) · 775 Bytes
Breadcrumbs
sdk-python
/
setup.py
Copy path
File metadata and controls
20 lines (18 loc) · 775 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from
setuptools
import
find_packages
,
setup
with
open
(
"README.md"
,
"r"
)
as
readme_file
:
readme
=
readme_file
.
read
()
setup
(
name
=
'serverlessworkflow.sdk'
,
packages
=
find_packages
(
include
=
[
'serverlessworkflow'
,
'serverlessworkflow.sdk'
]),
version
=
'1.0.0'
,
description
=
'Serverless Workflow Specification - Python SDK'
,
long_description
=
readme
,
long_description_content_type
=
"text/markdown"
,
url
=
"https://serverlessworkflow.io/"
,
author
=
'Serverless Workflow Contributors'
,
license
=
'http://www.apache.org/licenses/LICENSE-2.0.txt'
,
install_requires
=
[
'pyyaml==6.0'
,
"jsonschema==4.4.0"
,
"requests"
,
"pygraphviz==1.11"
,
"transitions==0.9.2"
],
setup_requires
=
[
'pytest-runner'
],
tests_require
=
[
'pytest'
],
test_suite
=
'tests'
,
)
Back
|
FazBrowse Home
|
New Git URL