File size: 470 Bytes
2ed8e4c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from setuptools import setup, find_packages
import glob
# with open('requirements.txt') as f:
# required = f.read().splitlines()
required = []
setup(name='hoho',
version='0.0.1',
description='Tools and utilites for the HoHo Dataset and S23DR Competition',
url='usm3d.github.io',
author='Jack Langerman, Dmytro Mishkin, S23DR Orgainizing Team',
author_email='hoho@jackml.com',
install_requires=required,
packages=find_packages(),
include_package_data=True) |