Skip to content
Merged
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: 2 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ trigger:
- master
- refs/tags/*

pr: none
pr:
- master

resources:
repositories:
Expand Down
10 changes: 2 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import os
from setuptools import setup
from setuptools import setup, find_packages


# if we are building in travis, use the build number as the sub-minor version
Expand All @@ -30,13 +30,7 @@
author_email="dave.cowden@gmail.com",
description="CadQuery is a parametric scripting language for creating and traversing CAD models",
long_description=open("README.md").read(),
packages=[
"cadquery",
"cadquery.contrib",
"cadquery.occ_impl",
"cadquery.plugins",
"tests",
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms="any",
Expand Down