forked from GEM-Illinois/lanenet-lane-detection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 826 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
#!/usr/bin/env python3
from setuptools import setup
setup(
name='lanenet',
version='0.1',
description='LaneNet',
author='MaybeShewill-CV',
maintainer='Chiao Hsieh',
maintainer_email='[email protected]',
license='Apache-2.0',
packages=setuptools.find_packages(exclude=["tests"]),
python_requires='>=3.6',
install_requires=[
'glog',
'numpy',
'opencv_contrib_python',
'scikit_learn==0.24.1',
'tensorflow==2.10.*',
'tensorflow_gpu==2.10.*',
'PyYaml',
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: Apache License 2.0',
'Programming Language :: Python :: 3.8',
]
)