__init__.py 265 B

1234567891011121314
  1. """
  2. pygene is a library for genetic algorithms in python
  3. It aims to be very simple to use, and suitable for people
  4. new to genetic algorithms.
  5. """
  6. version = "0.2.2a"
  7. __all__ = [
  8. 'gene', 'gamete', 'organism', 'population', 'xmlio', 'prog',
  9. 'config'
  10. ]