-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (39 loc) · 1.19 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 = "hb"
version = "1.4.2"
description = "A simple command-line utility for calculating checksums."
license = "MIT"
authors = ["Ching Chow <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/chingc/Hash-Brown"
repository = "https://github.com/chingc/Hash-Brown"
documentation = "https://github.com/chingc/Hash-Brown"
keywords = ["checksum", "digest", "hash", "md5", "sha1"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
"Topic :: Security",
"Topic :: System :: Archiving",
"Topic :: Utilities"
]
[tool.poetry.scripts]
hb = "hb.cli:cli"
[tool.poetry.dependencies]
python = "^3.6"
click = "^7.0"
colorama = "^0.4.0"
[tool.poetry.dev-dependencies]
codecov = "^2.0"
mypy = "^0.620.0"
pylint = "^2.0"
pytest = "^3.0"
rope = "^0.10.7"