-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (55 loc) · 1.47 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "station-runtime"
description = "Runtime Manager, i.e. a running-man(ager), for setting up a set of service like processes that are asynchronously managed by triggers and fed data trough queues."
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "Daniel Kastinen", email = "[email protected]"},
]
maintainers = [
{name = "Daniel Kastinen", email = "[email protected]"},
]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
]
requires-python = ">=3.7"
dependencies = [
"watchdog",
"croniter",
"pyzmq",
]
dynamic = ["version"]
[project.scripts]
runningman = "runningman.cli:main"
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.dynamic]
version = {attr = "runningman.version.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
develop = [
"pytest",
"flake8",
"wheel",
"build",
"twine",
"numpydoc",
"black",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index",
"mkdocs-jupyter",
]
[project.urls]
Documentation = "https://danielk.developer.irf.se/runningman/"
Repository = "https://github.com/danielk333/runningman"
[tool.black]
line-length = 100
target_version = ['py35', 'py36', 'py37', 'py38', 'py39', 'py310']