-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (23 loc) · 811 Bytes
/
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
from setuptools import setup
setup(
name="xadessri",
version="0.1.0",
url="https://github.com/jsonfm/xades-bes-sri",
description="A library for signing XML documents using the XADES-BES algorithm, which follows the guidelines of the SRI of Ecuador",
packages=["xadessri"],
author="Jason Francisco Macas Mora",
author_email="franciscomacas3@gmail.com",
license="AGPL V3",
install_requires=[
"cryptography==42.0.5",
"lxml==5.1.0",
],
python_requires=">=3.9",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 (AGPL-3.0)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
)