-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
58 lines (50 loc) · 1.16 KB
/
setup.cfg
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
[bumpversion]
current_version = 0.3.0
commit = True
tag = True
[metadata]
name = passlib-cli
version = attr: passlib_cli.metadata.version
description = CLI utils for passlib
long-description = file: README.md
long-description-content-type = text/markdown
url = 'https://github.com/fredrikhl/passlib-cli'
author = fredrikhl
license = MIT
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Topic :: Security
Topic :: System :: Systems Administration
Topic :: Utilities
[options]
package_dir =
= src/
packages = find:
install_requires =
passlib ~= 1.7.4
[options.packages.find]
where = src
[options.extras_require]
dev =
build == 0.2.1
bumpversion == 0.5.3
pytest ~= 6.2
bcrypt =
bcrypt ~= 4.0.1
scrypt =
scrypt ~= 0.8.20
[options.entry_points]
console_scripts =
passlib-mkpasswd = passlib_cli.mkpasswd:main
passlib-totp = passlib_cli.totp:main
passlib-autocomplete = passlib_cli.complete:main
[aliases]
test = pytest
[bdist_wheel]
universal = 1
[bumpversion:file:src/passlib_cli/metadata.py]