-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (24 loc) · 800 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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="multicam_birdseye",
version="1.0.0",
description="Birds Eye View from Multiple Vehicle Camera Images",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ayushgoel24/Birds-Eye-View-from-Multiple-Vehicle-Camera-Images",
author="Ayush Goel",
author_email="ayush.goel2427@gmail.com",
# package_dir={"": "src"}, # Optional
packages=find_packages(),
install_requires=[
'tensorflow',
'seaborn',
'numpy',
'pandas',
'tqdm'
]
)