-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (37 loc) · 1.04 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[project]
name = "monokel"
description = "A simple but flexible and containerized observer pipeline for filesystem events featured by docker."
readme = "README.md"
requires-python = ">=3.6"
license = {file = "LICENSE.md"}
keywords = ["python", "docker", "events", "pipeline", "docker-compose", "watchdog"]
authors = [
{email = "[email protected]"},
{name = "Rico Koschmitzky"}
]
maintainers = [
{name = "Rico Koschmitzky", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License"
]
dynamic = ["version"]
dependencies = [
"pipreqs==0.4.11"
]
[project.optional-dependencies]
watchdog = [
"watchdog==2.2.1",
]
[project.urls]
repository = "https://github.com/rkoschmitzky/monokel"
[project.scripts]
monokel = "monokel.cli:cli"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "monokel.__version__"}