-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.cfg
40 lines (37 loc) · 941 Bytes
/
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
[metadata]
name = pygenpass
description = Pygenpass - Command Line Password Generator and Manager Tool
home-page = https://github.com/paint-it/pygenpass
author = Mayuri Lahane
author-email = [email protected]
long_description = file: README.rst
long_description_content_type = text/x-rst
license = MIT License
license-file = LICENSE
keywords =
clitool
passwordmanager
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Environment :: Console
Topic :: Internet
Topic :: Utilities
[options]
zip_safe = false
include_package_data = true
packages = find:
python_requires = >= 3.6
setup_requires = setuptools_scm
install_requires =
beautifultable
click
diceware
termcolor
[options.entry_points]
console_scripts =
pygenpass = pygenpass.__init__:main
[flake8]
max_line_length = 100