-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (31 loc) · 1.05 KB
/
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("src/requirements.txt") as f:
requirements = [a for a in f.read().split('\n') if len(a) >= 2 and "#" not in a]
setuptools.setup(
name="fleetmanager-droidsagency",
version="1.0.0",
author="Droids Agency",
description="Fleet management",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
package_data={"fleetmanager": ["dummy_data.sql", "dashboard/assets/style.css",],},
python_requires=">=3.9",
install_requires=[
"requests~=2.2",
"numpy~=1.2",
"pandas~=1.3",
"SQLAlchemy==1.3.24",
"python-dotenv~=0.1",
"dash-bootstrap-templates~=1.0",
"numpy-financial~=1.0",
"bokeh~=2.4", # TODO: Get rid of this
] + requirements,
)