-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·41 lines (40 loc) · 1014 Bytes
/
setup.py
File metadata and controls
executable file
·41 lines (40 loc) · 1014 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
import setuptools
setuptools.setup(
name='jarvis-mocap',
version='0.1.1',
package_dir={"": "."},
packages=setuptools.find_packages(),
python_requires=">=3.6",
author="Timo Hueser",
author_email="jarvismocap@gmail.com",
url="https://github.com/JARVIS-MoCap/JARVIS-HybridNet",
description="A small example package",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"opencv-python",
"matplotlib",
"tqdm",
"yacs",
"ruamel.yaml",
"imgaug==0.4.0",
"tensorboard",
"ipywidgets",
"joblib",
"pandas",
"seaborn",
"Click",
"streamlit==1.11.0",
"streamlit_option_menu",
"inquirer==2.8.0",
"altair<5"
],
entry_points={
'console_scripts': [
'jarvis = jarvis.ui.jarvis:cli',
],
}
)