Update of /cvsroot/pyode/pyode
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4597
Modified Files:
AUTHORS README setup.py
Added Files:
MANIFEST.in
Removed Files:
Manifest.in
Log Message:
- Renamed Manifest.in to MANIFEST.in. (Distutils expects this on Unix.)
- Added license terms to the xode files.
- Changed my e-mail address in AUTHORS to my current one.
- Added my e-mail address to setup.py.
Index: README
===================================================================
RCS file: /cvsroot/pyode/pyode/README,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** README 11 Feb 2003 14:55:33 -0000 1.1.1.1
--- README 16 Nov 2004 06:19:48 -0000 1.2
***************
*** 1,38 ****
! PyODE - Python-ODE Interface
!
! Introduction
! PyODE provides an object-orientated python interface to the ODE pysics engine (http://opende.sourceforge.net).
!
! API
! The PyODE API is much like the ODE API except that it has been object-orientated so that all ODE's functions (in the form of d<Object><Method>(<ID>, <args>) correspond to <Object>.<Method>(args). E.g:
!
! ODE PyODE
! dWorldCreate(id) w = World()
! dBodyCreate(id, world) b = Body(w)
!
! Case
! PyODE methods names begin with a lower-case letter and each word has upper-case first letter thereafter.
!
! Vectors, Quaternions and Matricies
! All vectors, quaternions and matricies are represented by tuples in PyODE. Unlike ODE, dVector3's are not given by three separate arguments but by one tuple. E.g:
!
! ODE PyODE
! dVector3 (x,y,z)
! dQuaternion (n1,n2,n3,n4)
! dMatrix3 ( (a, b, c),
! (d, e, f),
! (g, h, i) )
!
! dWorldSetGravity(id, x, y, z) w.setGravity( (x,y,z) )
! Web Site
! http://pyode.sourceforge.net
! License
! PyODE is distributed under the GNU Lesser General Public License.
! Authors
! Timothy Stranex <pe...@dr...>
! Copyright (C) 2003 Timothy Stranex <pe...@dr...>
--- 1,24 ----
! PyODE
! =====
! PyODE is a set of open-source Python bindings for The Open Dynamics Engine, an
! open-source physics engine. PyODE also includes an XODE parser.
! This library is free software; you can redistribute it and/or
! modify it under the terms of EITHER:
! (1) The GNU Lesser General Public License as published by the Free
! Software Foundation; either version 2.1 of the License, or (at
! your option) any later version. The text of the GNU Lesser
! General Public License is included with this library in the
! file LICENSE.TXT.
! (2) The BSD-style license that is included with this library in
! the file LICENSE-BSD.TXT.
! This library is distributed in the hope that it will be useful,
! but WITHOUT ANY WARRANTY; without even the implied warranty of
! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the files
! LICENSE and LICENSE-BSD for more details.
! * Installation instructions are in the INSTALL file
+ * The PyODE web pages are at http://pyode.sourceforge.net/
Index: setup.py
===================================================================
RCS file: /cvsroot/pyode/pyode/setup.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** setup.py 9 Nov 2004 22:22:07 -0000 1.5
--- setup.py 16 Nov 2004 06:19:48 -0000 1.6
***************
*** 133,137 ****
description = "Python wrapper for the Open Dynamics Engine",
author = "see file AUTHORS",
! # author_email = "ba...@ir...",
license = "BSD or LGPL",
url = "http://pyode.sourceforge.net/",
--- 133,137 ----
description = "Python wrapper for the Open Dynamics Engine",
author = "see file AUTHORS",
! author_email = "ti...@st...",
license = "BSD or LGPL",
url = "http://pyode.sourceforge.net/",
Index: AUTHORS
===================================================================
RCS file: /cvsroot/pyode/pyode/AUTHORS,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** AUTHORS 15 Nov 2004 20:16:02 -0000 1.2
--- AUTHORS 16 Nov 2004 06:19:48 -0000 1.3
***************
*** 1,3 ****
! Timothy Stranex <pe...@dr...>
Matthias Baas <ba...@ir...>
Brett Hartshorn
--- 1,3 ----
! Timothy Stranex <ti...@st...>
Matthias Baas <ba...@ir...>
Brett Hartshorn
--- Manifest.in DELETED ---
--- NEW FILE: MANIFEST.in ---
include AUTHORS
include INSTALL
include README
include LICENSE
include LICENSE-BSD
include ChangeLog
recursive-include src *.pyx
recursive-include examples *.py
recursive-include tests *.py
|