-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 941 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (31 loc) · 941 Bytes
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
from setuptools import setup
setup(
name='azure-cost-tracker',
version="1.0.0",
author="interittus13",
author_email="",
url="https://github.com/Interittus13/AzureCostTracker",
description="A Python tool for tracking Azure subscription costs, generating reports, and sending automated email notifications.",
packages=['src', 'src.services', 'src.services.report', 'src.utils'],
package_data={'': ['../templates/*.html', '../templates/components/*.html']},
include_package_data=True,
install_requires=[
"jinja2",
"requests",
"python-dotenv",
"cryptography",
"weasyprint",
"fastapi",
"uvicorn",
"httpx",
],
entry_points="""
[console_scripts]
azure-cost-tracker=src.main:run
act=src.main:run
""",
classifiers=[
"Programming Language :: Python :: 3",
],
python_requires=">=3.7",
)