
jim at zope
Mar 1, 2006, 3:21 PM
Post #1 of 1
(845 views)
Permalink
|
|
SVN: Sandbox/J1m/project-template/trunk/ make more generic
|
|
Log message for revision 65690: make more generic Changed: D Sandbox/J1m/project-template/trunk/INSTALL.txt U Sandbox/J1m/project-template/trunk/setup.py D Sandbox/J1m/project-template/trunk/src/zope/i18nmessageid/ -=- Deleted: Sandbox/J1m/project-template/trunk/INSTALL.txt =================================================================== --- Sandbox/J1m/project-template/trunk/INSTALL.txt 2006-03-01 23:17:17 UTC (rev 65689) +++ Sandbox/J1m/project-template/trunk/INSTALL.txt 2006-03-01 23:21:03 UTC (rev 65690) @@ -1,83 +0,0 @@ -Installing This Package -======================= - -Prerequisites -------------- - -The installation steps below assume that you have the cool new 'setuptools' -package installed in your Python. Here is where to get it: - - $ wget http://peak.telecommunity.com/dist/ez_setup.py - $ /path/to/your/python ez_setup.py # req. write access to 'site-packages' - - - - Docs for EasyInstall: - http://peak.telecommunity.com/DevCenter/EasyInstall - - - Docs for setuptools: - http://peak.telecommunity.com/DevCenter/setuptools - - - Docs for eggs: - http://peak.telecommunity.com/DevCenter/PythonEggs - - -Installing a Development Checkout ---------------------------------- - -Check out the package from subversion: - - $ svn co svn+ssh://svn.zope.org/repos/main/zope.i18nmessageid/trunk \ - src/zope.i18nmessageid - $ cd src/zope.i18nmessageid - -Install it as a "devlopment egg" (which also installs its "hard" -dependencies): - - $ /path/to/your/python setup.py devel - -The installation of dependency eggs uses the 'setup.cfg' file in -the checkout. You can supply '--find-links' on the command line to -point it at a non-standard package repository. - - -Running the Tests ------------------ - -To test the package, you will also need the 'zope.testing' package, which -can't (yet) be automatically installed. Eventually, you should be able to -type: - - $ /path/to/your/python setup.py test - -and have it install the "testing dependencies." Today, the workaround -is to install it manually: - - $ /path/to/easy_install --find-links="...." zope-testing - -You can then run the tests (finally) from the checkout directory: - - $ /path/to/your/python test.py - Running: - ............. - Ran 13 tests with 0 failures and 0 errors in 0.094 seconds. - - -Installing a Source Distribution --------------------------------- - -You can also install it from a source distribution: - - $ /path/to/easy_install --find-links="...." -eb src zope-i18nmessageid - $ cd src/zope.i18nmessageid - $ /path/to/your/python setup.py devel - - -Installing a Binary Egg ------------------------ - -Install the package as a "binary egg" (which also installs its "hard" -dependencies): - - $ /path/to/easy_install --find-links="...." zope-i18nmessageid - - Modified: Sandbox/J1m/project-template/trunk/setup.py =================================================================== --- Sandbox/J1m/project-template/trunk/setup.py 2006-03-01 23:17:17 UTC (rev 65689) +++ Sandbox/J1m/project-template/trunk/setup.py 2006-03-01 23:21:03 UTC (rev 65690) @@ -23,28 +23,28 @@ except ImportError, e: from distutils.core import setup, Extension -setup(name='zope_i18nmessageid', - version='3.0', - - url='http://svn.zope.org/zope.i18nmessageid', +setup(name='zope.XXX', + version='1.0', + url='http://svn.zope.org/zope.XXX', license='ZPL 2.1', - description='Zope 3 i18n Message Identifier', + description='XXX', author='Zope Corporation and Contributors', author_email='zope3-dev [at] zope', long_description='', - packages=['zope', 'zope.i18nmessageid'], - package_dir = {'': 'src'}, + packages=['zope', 'zope.XXX'], + package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')}, - ext_modules=[Extension("zope.i18nmessageid._zope_i18nmessageid_message", - [os.path.join('src', 'zope', 'i18nmessageid', - "_zope_i18nmessageid_message.c") - ]), - ], +## ext_modules=[Extension("zope.XXX._zope_XXX", +## [os.path.join('src', 'zope', 'XXX', +## "_zope_XXX.c") +## ]), +## ], namespace_packages=['zope',], tests_require = ['zope_testing'], install_requires=['zope_deprecation'], + devel_requires=[], include_package_data = True, zip_safe = False, _______________________________________________ Zope-CVS maillist - Zope-CVS [at] zope http://mail.zope.org/mailman/listinfo/zope-cvs Zope CVS instructions: http://dev.zope.org/CVS
|