jacklangerman commited on
Commit
2ed8e4c
1 Parent(s): e99b13a

Create setup.py

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