Update classifiers in setup.py and add requirements

This commit is contained in:
Vassilis Choutas 2019-06-12 10:26:56 +02:00
parent 5e604bac9c
commit fe50aa9cbb
3 changed files with 14 additions and 1 deletions

View File

@ -0,0 +1,4 @@
pyrender>=0.1.23
shapely
trimesh>=2.37.6
smplx

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
numpy>=1.16.2
torch>=1.0

View File

@ -15,6 +15,7 @@
#
# Contact: ps-license@tuebingen.mpg.deimport io
import io
import os
import os.path as osp
@ -80,8 +81,14 @@ setup(name=NAME,
url=URL,
packages=find_packages(),
ext_modules=[bvh_extension],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"],
install_requires=[
'torch>=1.0.1.post2',
'torch>=1.0.1',
],
extras_require={
'render': render_reqs,