-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
53 lines (47 loc) · 1.41 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
import re
import setuptools
def get_info():
with open("README.md", "r") as fh:
long_description = fh.read()
version = re.search(
r'^__version__\s*=\s*"(.*)"',
open("experimenting/__init__.py").read(),
re.MULTILINE,
).group(1)
return long_description, version
long_description, version = get_info()
setuptools.setup(
name='lifting_events_to_3d_hpe',
version=version,
description='Code for 2021 CVPRw "Lifting Monocular Events to 3D Human Poses"',
long_description=long_description,
author='Gianluca Scarpellini',
author_email='[email protected]',
url='https://github.com/iit-pavis/lifting_events_to_3d_hpe',
install_requires=[
'albumentations',
'opencv-python==4.2.0.34',
'h5py',
'scikit-image',
'scikit-learn',
'scikit-video',
'scipy',
'torch>1.4',
'kornia',
'hydra-core==1.0.0rc1',
'omegaconf',
'pytorch-lightning==1.1.6',
'torchvision',
'tqdm',
'segmentation_models_pytorch',
],
packages=setuptools.find_packages(exclude=["tests", "tests/*"]),
test_suite="tests",
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPL License",
"Operating System :: Linux",
],
)