-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 1 KB
/
setup.py
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
import setuptools
setuptools.setup(
name="xmldsig-client",
description="A command-line tool for sending XML messages with digital signatures.",
author="Kraken Technologies Limited",
author_email="[email protected]",
url="https://github.com/octoenergy/xmldsig-client",
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
install_requires=[
"cryptography",
"pyOpenSSL",
"requests",
"signxml",
"xmlschema",
],
entry_points={
"console_scripts": [
"xmldsig-client = xmldsig.__main__:main",
],
},
version_config=True,
setup_requires=["setuptools-git-versioning"],
classifiers=[
"Environment :: Console",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing :: Traffic Generation",
"Topic :: Text Processing :: Markup :: XML",
],
)