Make pyparsing an actual cadquery requirement

This commit is contained in:
Miguel Sánchez de León Peque
2017-02-11 16:45:21 +01:00
parent 26261c6ff5
commit 55b3991cfa
2 changed files with 3 additions and 2 deletions

View File

@ -1 +1 @@
pyparsing
-e .

View File

@ -19,7 +19,7 @@ from setuptools import setup
version = '0.5-SNAPSHOT'
if 'TRAVIS_TAG' in os.environ.keys():
version= os.environ['TRAVIS_TAG']
setup(
name='cadquery',
@ -31,6 +31,7 @@ setup(
description='CadQuery is a parametric scripting language for creating and traversing CAD models',
long_description=open('README.md').read(),
packages=['cadquery','cadquery.contrib','cadquery.freecad_impl','cadquery.plugins','tests'],
install_requires=['pyparsing'],
include_package_data=True,
zip_safe=False,
platforms='any',