forked from rgl-epfl/large-steps-pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (21 loc) · 808 Bytes
/
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
from setuptools import setup
# read the contents of your README file (https://packaging.python.org/en/latest/guides/making-a-pypi-friendly-readme/)
from pathlib import Path
this_directory = Path(__file__).parent
readme = (this_directory / "README.md").read_text()
setup(
name='largesteps',
version='0.2.2',
description='Laplacian parameterization package for shape optimization with differentiable rendering',
url='https://github.com/rgl-epfl/large-steps-pytorch',
author='Baptiste Nicolet',
author_email='[email protected]',
license='BSD',
packages=['largesteps'],
install_requires=['numpy',
'scipy',
'cholespy'
],
long_description=readme,
long_description_content_type="text/markdown"
)