-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (25 loc) · 893 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
version = "0.8.6"
name = "theflow"
authors = [{ name = "trducng", email = "trungduc1992@gmail.com" }]
description = "A simple framework to build and run flows"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 2 - Pre-Alpha"
]
dependencies = ["pyyaml", "diskcache", "typing_extensions"]
[project.optional-dependencies]
dev = ["coverage", "pytest", "pytest-cov", "black", "flake8", "mypy", "isort", "pre-commit", "notebook", "ipython", "build", "twine", "papermill", "pymemcache"]
[project.urls]
Homepage = "https://github.com/trducng/theflow"
Repository = "https://github.com/trducng/theflow"
[tool.setuptools.packages.find]
include = ["theflow", "theflow.*"]
[tool.isort]
profile = "black"