Changeset 113
- Timestamp:
- 10/18/09 21:48:29 (3 years ago)
- Location:
- plone4bio.base/trunk
- Files:
-
- 1 added
- 5 modified
- 1 moved
-
. (modified) (1 prop)
-
MANIFEST.in (added)
-
docs/CHANGES.txt (modified) (1 diff)
-
docs/TODO.txt (moved) (moved from plone4bio.base/trunk/TODO.txt)
-
plone3.cfg (modified) (1 diff)
-
setup.py (modified) (1 diff)
-
src/plone4bio/base/interfaces.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plone4bio.base/trunk
- Property svn:ignore
-
old new 8 8 fake-eggs 9 9 .installed.cfg 10 build 11 dist
-
- Property svn:ignore
-
plone4bio.base/trunk/docs/CHANGES.txt
r8 r113 1 ====================== =====1 ====================== 2 2 plone4bio.base Changes 3 =========================== 3 ====================== 4 5 plone4bio.base 1.0.2 (unreleased) 6 ================================= 7 8 plone4bio.base 1.0.1 (2009-09-21) 9 ================================= 4 10 5 11 Features 6 12 -------- 7 13 8 * Added the new object `predictor'.14 * features image via bioperl 9 15 10 * TODO: add a fully working predictor.16 * html imagemap via bioperl 11 17 18 * initial load seqrecord from genbank 19 20 * inital predictor functionalities 12 21 13 22 plone4bio.base (2008-01-31) -
plone4bio.base/trunk/plone3.cfg
r47 r113 1 1 [buildout] 2 extends = http://dist.plone.org/release/3.3 /versions.cfg2 extends = http://dist.plone.org/release/3.3.1/versions.cfg 3 3 parts = 4 4 zope2 -
plone4bio.base/trunk/setup.py
r52 r113 1 1 from setuptools import setup, find_packages 2 2 3 version = '1.0.1' 4 readme = open('./src/plone4bio/base/README.txt') 5 long_description = readme.read() 6 readme.close() 3 version = '1.0.2' 7 4 8 5 setup(name='plone4bio.base', 9 6 version=version, 10 7 description="Plone4Bio base package", 11 long_description=long_description, 8 long_description='\n'.join( 9 open(os.path.join(*path)).read() for path in [ 10 ("src", "plone4bio", "base", "README.txt"), 11 ("docs", "CHANGES.txt"), ("docs", "TODO.txt")]), 12 12 # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers 13 13 classifiers=[ -
plone4bio.base/trunk/src/plone4bio/base/interfaces.py
r45 r113 38 38 required=True, 39 39 default=u'') 40 40 41 # TODO: vocabulary 41 42 alphabet = fields.ChoiceWORM(title=_(u"Alphabet"), values = ["Bio.Alphabet.ProteinAlphabet", … … 43 44 "Bio.Alphabet.IUPAC.IUPACProtein", 44 45 ]) 45 dbxrefs = schema.List(title=_(u"Dbxrefs"), value_type=schema.TextLine(title=_(u"dbxref"))) 46 47 dbxrefs = schema.List(title=_(u"Dbxrefs"), value_type=schema.TextLine(title=_(u"dbxref")), required=False) 46 48 #TODO: annotation value will be also a list ... 47 49 #TODO: there is no default widget for Dict
