Cleaned up some of the egg info.
This commit is contained in:
parent
260e0d5424
commit
9aba526c5f
|
@ -1,6 +1,6 @@
|
|||
Metadata-Version: 1.1
|
||||
Name: cadquery
|
||||
Version: 0.1.8
|
||||
Version: 0.2.0
|
||||
Summary: CadQuery is a parametric scripting language for creating and traversing CAD models
|
||||
Home-page: https://github.com/dcowden/cadquery
|
||||
Author: David Cowden
|
||||
|
@ -20,6 +20,26 @@ Description: What is a CadQuery?
|
|||
|
||||
Using CadQuery, you can write short, simple scripts that produce high quality CAD models. It is easy to make many different objects using a single script that can be customized.
|
||||
|
||||
Getting Started With CadQuery
|
||||
========================================
|
||||
|
||||
The easiest way to get started with CadQuery is to Install FreeCAD ( version 14 recommended ) (http://www.freecadweb.org/) , and then to use Jeremy's Great CadQuery-FreeCAD plugin here:
|
||||
|
||||
https://github.com/jmwright/cadquery-freecad-module
|
||||
|
||||
|
||||
It includes the latest version of cadquery alreadby bundled, and has super-easy installation on Mac, Windows, and Unix.
|
||||
|
||||
It has tons of awesome features like integration with FreeCAD so you can see your objects, code-autocompletion, an examples bundle, and script saving/loading. Its definitely the best way to kick the tires!
|
||||
|
||||
|
||||
Recently Added Features
|
||||
========================================
|
||||
|
||||
* 12/5/14 -- New FreeCAD/CadQuery Module! https://github.com/jmwright/cadquery-freecad-module
|
||||
* 10/25/14 -- Added Revolution Feature ( thanks Jeremy ! )
|
||||
|
||||
|
||||
Why CadQuery instead of OpenSCAD?
|
||||
========================================
|
||||
|
||||
|
@ -52,12 +72,14 @@ Description: What is a CadQuery?
|
|||
Where is the GUI?
|
||||
==================
|
||||
|
||||
CadQuery does not provide a stand-alone gui yet, though this is one of the projects we hope to tackle.
|
||||
If you would like IDE support, you can use CadQuery inside of FreeCAD. There's an excellent plugin module here https://github.com/jmwright/cadquery-freecad-module
|
||||
|
||||
CadQuery provides the backbone of http://parametricparts.com, so the easiest way to see it in action is to review the samples and objects there.
|
||||
CadQuery also provides the backbone of http://parametricparts.com, so the easiest way to see it in action is to review the samples and objects there.
|
||||
|
||||
Installing
|
||||
============
|
||||
Installing -- FreeStanding Installation
|
||||
========================================
|
||||
|
||||
Use these steps if you would like to write CadQuery scripts as a python API. In this case, FreeCAD is used only as a CAD kernel.
|
||||
|
||||
1. install FreeCAD, version 0.12 or greater for your platform. http://sourceforge.net/projects/free-cad/.
|
||||
|
||||
|
@ -87,8 +109,13 @@ Description: What is a CadQuery?
|
|||
|
||||
You're up and running!
|
||||
|
||||
Installing -- Using CadQuery from Inside FreeCAD
|
||||
=================================================
|
||||
|
||||
Use the Excellent CadQuery-FreeCAD plugin here:
|
||||
https://github.com/jmwright/cadquery-freecad-module
|
||||
|
||||
It includes a distribution of the latest version of cadquery.
|
||||
|
||||
Where does the name CadQuery come from?
|
||||
========================================
|
||||
|
@ -106,7 +133,7 @@ Description: What is a CadQuery?
|
|||
|
||||
|
||||
Platform: any
|
||||
Classifier: Development Status :: 3 - Alpha
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: Intended Audience :: End Users/Desktop
|
||||
Classifier: Intended Audience :: Information Technology
|
||||
|
|
|
@ -6,11 +6,11 @@ cadquery/CQ.py
|
|||
cadquery/__init__.py
|
||||
cadquery/cq_directive.py
|
||||
cadquery/selectors.py
|
||||
cadquery/workplane.py
|
||||
cadquery.egg-info/PKG-INFO
|
||||
cadquery.egg-info/SOURCES.txt
|
||||
cadquery.egg-info/dependency_links.txt
|
||||
cadquery.egg-info/not-zip-safe
|
||||
cadquery.egg-info/pbr.json
|
||||
cadquery.egg-info/top_level.txt
|
||||
cadquery/contrib/__init__.py
|
||||
cadquery/freecad_impl/__init__.py
|
||||
|
@ -24,6 +24,5 @@ tests/TestCadObjects.py
|
|||
tests/TestCadQuery.py
|
||||
tests/TestExporters.py
|
||||
tests/TestImporters.py
|
||||
tests/TestImports.py
|
||||
tests/TestWorkplanes.py
|
||||
tests/__init__.py
|
6
setup.py
6
setup.py
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name='cadquery',
|
||||
version='0.1.8',
|
||||
version='0.2.0',
|
||||
url='https://github.com/dcowden/cadquery',
|
||||
license='LGPL',
|
||||
author='David Cowden',
|
||||
|
@ -19,9 +19,9 @@ setup(
|
|||
# As from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
#'Development Status :: 1 - Planning',
|
||||
#'Development Status :: 2 - Pre-Alpha',
|
||||
'Development Status :: 3 - Alpha',
|
||||
#'Development Status :: 3 - Alpha',
|
||||
#'Development Status :: 4 - Beta',
|
||||
#'Development Status :: 5 - Production/Stable',
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
#'Development Status :: 6 - Mature',
|
||||
#'Development Status :: 7 - Inactive',
|
||||
'Intended Audience :: Developers',
|
||||
|
|
Loading…
Reference in New Issue
Block a user