generic/docs/index.rst

47 lines
1.1 KiB
ReStructuredText
Raw Permalink Normal View History

2011-12-05 01:12:55 +04:00
Generic programming library for Python
======================================
2011-12-03 23:55:45 +04:00
2011-12-05 01:12:55 +04:00
Generic is trying to provide a Python programmer with primitives for creating
reusable software components by employing advanced techniques of OOP and other
2011-12-03 23:55:45 +04:00
programming paradigms.
This documentation suits both needs in a tutorial and an API reference for
generic:
.. toctree::
:maxdepth: 3
:hidden:
2011-12-03 23:55:45 +04:00
multidispatching
event_system
registry
2011-12-05 01:12:55 +04:00
2011-12-03 23:55:45 +04:00
Installation
------------
You can get generic by issuing *easy_install*::
% easy_install generic
or *pip* command::
% pip install generic
In case you find a bug or have a feature request, please file a ticket at
`GitHub Issues`_.
2019-11-17 00:13:56 +03:00
.. _GitHub Issues: https://github.com/gaphor/generic/issues
2011-12-03 23:55:45 +04:00
Development process
-------------------
Development takes place at `GitHub`_, you can clone source code repository with the
following command::
2019-11-17 00:13:56 +03:00
% git clone git://github.com/gaphor/generic.git
2011-12-03 23:55:45 +04:00
In case submitting patch or GitHub pull request please ensure you have
corresponding tests for your bugfix or new functionality.
2019-11-17 00:13:56 +03:00
.. _GitHub: https://github.com/gaphor/generic