-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 953 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
26
27
28
29
30
31
32
33
34
from setuptools import setup
from digaws import __description__, __version__
def get_long_description() -> str:
with open("README.md", "r", encoding="utf-8") as fh:
return fh.read()
setup(
name="digaws",
version=__version__,
description=__description__,
long_description=get_long_description(),
long_description_content_type="text/markdown",
url="http://github.com/dcarrillo/digaws",
author="Daniel Carrillo",
author_email="[email protected]",
license="Apache Software License",
packages=["digaws"],
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
entry_points={"console_scripts": ["digaws=digaws.digaws:main"]},
install_requires=[
"python-dateutil~=2.8",
"requests~=2.25",
],
)