fhcrc / seqmagick

An imagemagick-like frontend to Biopython SeqIO
http://seqmagick.readthedocs.org
GNU General Public License v3.0
112 stars 22 forks source link

package organization #4

Closed nhoffman closed 13 years ago

nhoffman commented 13 years ago

Aaron shared his preferred schema for organizing python packages with me, and it might be useful to apply it here (might also be a good idea to ask him to define the schema on the bunnyhutch wiki).

cmccoy commented 13 years ago

Done in dev - can you see if it matches your plan?

bhodges commented 13 years ago

The organization looks good and thanks. I was just looking at one of Aaron's packages and another minor package cleanup suggestion would be to add the version to init.py.

Something like this?

init.py: version = '.10'

setup.py: from seqmagick import version as version ... version=version

bhodges commented 13 years ago

correction, init.py:

__version__ = '.10'

(underscores were dissappearing until I indented the text...)