Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,8 @@ pyglet
# https://www.lfd.uci.edu/~gohlke/pythonlibs
#
# meshpy
https://github.com/JosephSamela/python-package-hosted/blob/master/MeshPy-2018.2.1-cp37-cp37m-win_amd64.whl?raw=true
# shapely
https://github.com/JosephSamela/python-package-hosted/blob/master/Shapely-1.7.0-cp37-cp37m-win_amd64.whl?raw=true
# rtree
https://github.com/JosephSamela/python-package-hosted/blob/master/Rtree-0.9.4-cp37-cp37m-win_amd64.whl?raw=true
33 changes: 33 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
from setuptools import setup, find_packages

setup(
name='pychop3d',
version='alpha-1',
description='Python implementation of "Chopper: Partitioning Models into 3D-Printable Parts"',
url='https://github.com/gregstarr/pychop3d',
author='gregstarr',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
packages=['pychop3d'],
package_dir={'pychop3d': 'pychop3d'},
python_requires='!=3.6.',
install_requires=[
'matplotlib',
'numpy',
'scipy',
'pytest',
'networkx',
'pyyaml',
'requests',
'trimesh',
'pyglet'
],
project_urls={
'Bug Reports': 'https://github.com/gregstarr/pychop3d/issues',
'Source': 'https://github.com/gregstarr/pychop3d',
}
)