开发者

similar tools in Python? (tools from Ruby)

开发者 https://www.devze.com 2023-02-18 03:49 出处:网络
gem: package managemen开发者_StackOverflow中文版t. bundler: dependency management rspec: test framework.
  1. gem: package managemen开发者_StackOverflow中文版t.
  2. bundler: dependency management
  3. rspec: test framework.
  4. watchr: autotest tool
  5. yard: documentation tool.
  6. rdoc Markdown: markdown for writing code's comment.
  7. rvm: Ruby version Manager.
  8. rake: task tool.

I want to find some tools in Python can do the job describe above.


  1. gem == easy_install, a part of setuptools
  2. setuptools
  3. for testing framework see nosetest
  4. autonose
  5. epydoc or sphinx
  6. use docstrings
  7. virtualenv along with virtualenvwrapper.
  8. paver


1) PyPI/setuptools/distribute

2) done via 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

https://www.sphinx-doc.org

0

精彩评论

暂无评论...
验证码 换一张
取 消