-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.cfg
47 lines (41 loc) · 1001 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
41
42
43
44
45
46
47
[bdist_wheel]
universal = 1
[metadata]
name = docker-hub
version = attr: src.__version__
author = Amal Francis
author_email = [email protected]
url = http://github.com/amalfra/docker-hub
description = Access docker hub from your terminal
long_description = file: README.md
long_description_content_type = text/markdown
keywords = docker, cli, docker-hub, client, tools
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
[aliases]
test = pytest
[options]
include_package_data = True
packages = find:
python_requires = >= 3.7
install_requires =
requests ==2.28.0
tabulate ==0.8.10
python-dateutil ==2.8.2
[options.entry_points]
console_scripts =
docker-hub = src.__main__:main
[options.package_data]
* = README.md
[options.extras_require]
test =
pytest
pylint
coverage
coveralls