* remove dependancy on pifpaf.transform * add compatibility with pifpaf 0.9 * change verbose output * add image transform compatible with webcam
43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
from setuptools import setup
|
|
|
|
# extract version from __init__.py
|
|
with open('monoloco/__init__.py', 'r') as f:
|
|
VERSION_LINE = [l for l in f if l.startswith('__version__')][0]
|
|
VERSION = VERSION_LINE.split('=')[1].strip()[1:-1]
|
|
|
|
setup(
|
|
name='monoloco',
|
|
version=VERSION,
|
|
packages=[
|
|
'monoloco',
|
|
'monoloco.network',
|
|
'monoloco.eval',
|
|
'monoloco.train',
|
|
'monoloco.prep',
|
|
'monoloco.visuals',
|
|
'monoloco.utils'
|
|
],
|
|
license='GNU AGPLv3',
|
|
description='MonoLoco: Monocular 3D Pedestrian Localization and Uncertainty Estimation',
|
|
long_description=open('README.md').read(),
|
|
long_description_content_type='text/markdown',
|
|
author='Lorenzo Bertoni',
|
|
author_email='lorenzo.bertoni@epfl.ch',
|
|
url='https://github.com/vita-epfl/monoloco',
|
|
zip_safe=False,
|
|
|
|
install_requires=[
|
|
'openpifpaf',
|
|
'tabulate', # For evaluation
|
|
],
|
|
extras_require={
|
|
'test': [
|
|
'pylint',
|
|
'pytest',
|
|
],
|
|
'prep': [
|
|
'nuscenes-devkit',
|
|
],
|
|
},
|
|
)
|