-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (29 loc) · 949 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
31
32
33
34
35
36
[project]
name = "fileswitch"
version = "0.1.0"
description = """A filter based file router.\nDesigned to allow granular file routings based on parametrized filters and varying sources and destinations."""
authors = [
{name = "Marcel Johannesmann", email="[email protected]"},
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.9.5"
keywords = ["files", "routing", "filter", "transfer"]
classifiers = [
"Topic :: File Routing"
]
dependencies = [
]
[project.optional-dependencies]
dev = [
"black>=22.6.0",
"pytest>=7.1.2",
]
[project.urls]
homepage = "https://github.com/mj0nez/FileSwitch"
repository = "https://github.com/mj0nez/FileSwitch"
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"