[Mumps2Py:] [14] updated for new directory structure. |
[ Thread Index |
Date Index
| More lists.mumps2py.org/discuss Archives
]
Revision: 14
Author: pgallot
Date: 2008-01-17 18:54:34 +0000 (Thu, 17 Jan 2008)
Log Message:
-----------
updated for new directory structure. It still doesn't handle the non-python files correctly.
Modified Paths:
--------------
trunk/setup.py
Modified: trunk/setup.py
===================================================================
--- trunk/setup.py 2008-01-17 18:51:20 UTC (rev 13)
+++ trunk/setup.py 2008-01-17 18:54:34 UTC (rev 14)
@@ -11,15 +11,15 @@
# As a work-around, I've manually edited the MANIFEST file, and re-run sdist.
setup(name = 'Mumps2Py',
- version = '0.1.0',
+ version = '0.2.0',
author = 'Patrick Gallot',
author_email = 'pgallot@xxxxxxxxxxxx',
url = 'http://www.mumps2py.org/',
license = 'GPL v3',
description = 'Mumps2Py translates Mumps source code to Python.',
packages = ['mumps2py', ],
- package_dir = {'mumps2py':''},
- package_data = {'mumps2py': ["*.txt", "testfiles/*.mps"]},
+ package_dir = {'mumps2py':'mumps2py'},
+ package_data = {'': ["*.txt", "testfiles/*.mps"]},
scripts = ['mumps2py_ui.pyw'],
data_files = [('', ['README.txt', 'COPYING.txt'])]
)