Changeset 973
- Timestamp:
- Jun 25, 2012 10:49:11 AM (11 years ago)
- Location:
- specdomain/trunk/src/specdomain
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
specdomain/trunk/src/specdomain/MANIFEST.in
r912 r973 3 3 include CHANGES* 4 4 include AUTHORS 5 include VERSION -
specdomain/trunk/src/specdomain/README
r908 r973 1 2 This Python package is an extension for Sphinx 3 (http://sphinx.pocoo.org/), to document SPEC macro 4 source code files. SPEC (http://www.certif.com) is 5 control software for X-Ray Diffraction and Data 6 Acquisition of scientific instruments. 7 8 This code extracts useful documentation from SPEC macro 9 source code files. -
specdomain/trunk/src/specdomain/doc/conf.py
r913 r973 51 51 # 52 52 # The short X.Y version. 53 version = '1.0'53 version = open(os.path.join('..', 'VERSION')).read() 54 54 # The full version, including alpha/beta/rc tags. 55 release = '1.0'55 release = version 56 56 57 57 # The language for content autogenerated by Sphinx. Refer to documentation -
specdomain/trunk/src/specdomain/setup.py
r908 r973 8 8 This package contains the specdomain Sphinx extension. 9 9 10 .. add description here .. 11 ''' 10 ''' + open('README').read() 11 12 version = open('VERSION').read() 12 13 13 14 requires = ['Sphinx>=0.6'] … … 15 16 setup( 16 17 name='sphinxcontrib-specdomain', 17 version= '0.1',18 url='http://bitbucket.org/birkenfeld/sphinx-contrib',19 download_url='http://pypi.python.org/pypi/sphinxcontrib-specdomain',20 license=' BSD',18 version=version, 19 #url='http://bitbucket.org/birkenfeld/sphinx-contrib', 20 #download_url='http://pypi.python.org/pypi/sphinxcontrib-specdomain', 21 license='Argonne OPEN SOURCE LICENSE, see LICENSE file for details', 21 22 author='Pete Jemian', 22 23 author_email='jemian@anl.gov', -
specdomain/trunk/src/specdomain/test/conf.py
r919 r973 51 51 # 52 52 # The short X.Y version. 53 version = '1.0'53 version = open(os.path.join('..', 'VERSION')).read() 54 54 # The full version, including alpha/beta/rc tags. 55 release = '1.0'55 release = version 56 56 57 57 # The language for content autogenerated by Sphinx. Refer to documentation
Note: See TracChangeset
for help on using the changeset viewer.