Similar tools in Python? (tools from Ruby)

  • gem: package management.
  • bundler: dependency management
  • rspec: test environment.
  • watchr: autotest tool
  • yard: documentation tool.
  • rdoc Markdown: markdown for writing code comment.
  • rvm: Ruby version manager.
  • rake: task tool.

I want to find some tools in Python that can do the work described above.

+4
source share
2 answers
+9
source

1) PyPI / setuptools / distribution

2) done using setuptools (install_requires directive in setup.py)

3) unittest / unittest / nose (with integration in Hudson or Buildbot)

5) Sphinx

http://pypi.python.org/pypi

http://pypi.python.org/pypi/setuptools

http://sphinx.pocoo.org/

+1
source

Source: https://habr.com/ru/post/1344460/


All Articles