-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 704 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 704 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
from setuptools import setup
setup(
name='sdf',
version='0.1',
description='Generate 3D meshes from signed distance functions.',
author='Michael Fogleman',
author_email='michael.fogleman@gmail.com',
packages=['sdf'],
install_requires=[
'matplotlib',
'meshio',
'numpy',
'scikit-image>=0.17',
'scipy',
'Pillow',
],
license='MIT',
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
),
)