2020-12-25 20:36:41 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
2024-06-08 11:43:41 +00:00
|
|
|
from digaws import __description__, __version__
|
|
|
|
|
2020-12-25 20:36:41 +00:00
|
|
|
|
|
|
|
def get_long_description() -> str:
|
2024-06-08 11:43:41 +00:00
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
2020-12-25 20:36:41 +00:00
|
|
|
return fh.read()
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
2024-06-08 11:43:41 +00:00
|
|
|
name="digaws",
|
2020-12-25 20:36:41 +00:00
|
|
|
version=__version__,
|
|
|
|
description=__description__,
|
|
|
|
long_description=get_long_description(),
|
2024-06-08 11:43:41 +00:00
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
url="http://github.com/dcarrillo/digaws",
|
|
|
|
author="Daniel Carrillo",
|
|
|
|
author_email="daniel.carrillo@gmail.com",
|
|
|
|
license="Apache Software License",
|
|
|
|
packages=["digaws"],
|
2020-12-25 20:36:41 +00:00
|
|
|
zip_safe=False,
|
|
|
|
classifiers=[
|
2024-06-08 11:43:41 +00:00
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: Apache Software License",
|
|
|
|
"Operating System :: OS Independent",
|
2020-12-25 20:36:41 +00:00
|
|
|
],
|
2024-06-08 11:43:41 +00:00
|
|
|
python_requires=">=3.8",
|
|
|
|
entry_points={"console_scripts": ["digaws=digaws.digaws:main"]},
|
2020-12-25 20:36:41 +00:00
|
|
|
install_requires=[
|
2024-06-08 11:43:41 +00:00
|
|
|
"python-dateutil~=2.8",
|
|
|
|
"requests~=2.25",
|
|
|
|
],
|
2020-12-25 20:36:41 +00:00
|
|
|
)
|