2022-06-21 10:40:16 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="cas_wrapper",
|
2022-09-14 15:58:37 +00:00
|
|
|
version="0.0.5",
|
2022-06-21 10:40:16 +00:00
|
|
|
author="Stepan Oksanichenko",
|
|
|
|
author_email="soksanichenko@almalinux.org",
|
2022-06-21 10:41:27 +00:00
|
|
|
description="The python wrapper around binary cas from "
|
|
|
|
"project Codenotary Community Attestation Service.",
|
2022-06-21 10:40:16 +00:00
|
|
|
url="https://git.almalinux.org/almalinux/cas_wrapper",
|
|
|
|
project_urls={
|
|
|
|
"Bug Tracker": "https://git.almalinux.org/almalinux/cas_wrapper/issues",
|
|
|
|
},
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
2022-06-21 10:41:27 +00:00
|
|
|
"License :: OSI Approved :: "
|
|
|
|
"GNU General Public License v3 or later (GPLv3+)",
|
2022-06-21 10:40:16 +00:00
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
|
|
|
py_modules=['cas_wrapper'],
|
|
|
|
scripts=['cas_wrapper.py'],
|
|
|
|
install_requires=[
|
|
|
|
'plumbum>=1.7.2',
|
|
|
|
],
|
|
|
|
python_requires=">=3.6",
|
|
|
|
)
|