-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 854 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
24
25
26
27
28
from setuptools import setup
setup(
name='SDF Sampler',
version='0.2',
description='Generates 2D/3D SDF samples based on the paper "Primitive3D: 3D Object Dataset Synthesis from Randomly Assembled Primitives"',
author='Ezequiel Bidart',
author_email='[email protected]',
packages=['sdf_sampler'],
install_requires=[
'sdf@git+https://github.com/fogleman/sdf.git',
'binarytree',
'numpy',
'matplotlib',
'imageio',
'ffmpeg',
'imageio-ffmpeg'
],
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)