Easy to use bulk model uploader for Shapeways API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

25 lines
540 B

#!/usr/bin/env python
from setuptools import setup
from swuploader import __version__
setup(
name='swuploader',
version=__version__,
author='Brett Langdon',
author_email='brett@blangdon.com',
py_modules=[
'swuploader',
],
install_requires=[
'shapeways==1.0.0',
'docopt==0.6.2',
],
scripts=[
'./bin/swuploader',
],
setup_requires=[],
description='Easy to use bulk model uploader for Shapeways.com API',
url='http://github.com/brettlangdon/swuploader',
)