-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 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
[tool.poetry]
name = "filewatcher"
version = "1.0.0"
description = "FileWatcher project for launching when receiving a file with parameters and possible configuration by YAML file"
keywords = [
"filewatcher",
"watchdog",
"realtime"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7"
]
authors = ["Ibrar ARIF <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/IbrarMakaveli/FileWatcher"
[tool.poetry.dependencies]
python = "^3.6"
argh = "^0.26.2"
certifi = "^2019.9.11"
chardet = "^3.0.4"
humanfriendly = "^4.18"
idna = "^2.8"
monotonic = "^1.5"
pathtools = "^0.1.2"
pyyaml = "^5.1.2"
tabulate = "^0.8.5"
urllib3 = "^1.25.6"
watchdog = "^0.9.0"
tomlkit = "^0.5.7"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"