-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
37 lines (35 loc) · 1.01 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
[metadata]
name = digsec
version = attr:digsec.DIGSEC_VERSION
url = https://github.com/metebalci/digsec
author = Mete Balci
author_email = [email protected]
license = GPLv3
description = dig like command line utility to understand DNSSEC
long_description_content_type = text/markdown
keywords = DNSSEC
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Information Technology
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Topic :: Internet :: Name Service (DNS)
Topic :: System :: Networking
Topic :: System :: Systems Administration
Topic :: Utilities
[options]
zip_safe = False
include_package_data = True
packages = digsec
install_requires =
rsa==4.9
ecdsa==0.18.0
ECPy==1.2.5
[options.entry_points]
console_scripts =
digsec=digsec.main:main
digsec.resolve=digsec.resolve:main
digsec.authenticate=digsec.authenticate:main