generated from department-of-general-services/python-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 807 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
"""Setup script for aging_report package."""
import os
from setuptools import find_packages
from setuptools import setup
setup(
name="dgs_fiscal",
version="1.0.0",
description=("Automates a series of DGS Fiscal workflows"),
author="Department of General Services",
author_email="[email protected]",
install_requires=[
"wheel",
"dynaconf",
"O365",
"pandas",
"selenium",
"xlwings",
"openpyxl",
"more-itertools",
"typer",
"XlsxWriter",
],
include_package_data=True,
package_dir={"": "src"}, # this is required to access code in src/
packages=find_packages(where="src"), # same as above
entry_points={
"console_scripts": ["dgs_fiscal=dgs_fiscal:app"],
},
)