-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (52 loc) · 1.57 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (52 loc) · 1.57 KB
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
56
"""
Workflow Engine - 配置驱动的任务编排框架
安装方法:
pip install -e .
或
python setup.py install
"""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="yawe",
version="1.0.0",
author="Tom James",
author_email="tomjamescn@gmail.com",
description="YAWE - Yet Another Workflow Engine: 一个轻量级、配置驱动的工作流任务编排框架",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tomjamescn/yawe",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
python_requires=">=3.6",
install_requires=[
"PyYAML>=5.1",
"Jinja2>=2.11",
"requests>=2.25",
],
extras_require={
"dev": [
"pytest>=6.0",
"pytest-cov>=2.10",
"black>=21.0",
"flake8>=3.8",
],
},
entry_points={
"console_scripts": [
"workflow-run=workflow_engine.cli:main",
],
},
)