Git Office Hours : le test pour Entr'ouvert
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.py 349B

123456789101112131415
  1. from setuptools import setup
  2. setup(
  3. name="git_oh",
  4. version="0.0.1",
  5. author="Yann Weber",
  6. author_email="git_oh@yannweb.net",
  7. py_modules=["git_oh"],
  8. install_requires=["GitPython"],
  9. entry_points={
  10. "console_scripts": [
  11. "git_oh=git_oh:main",
  12. ]
  13. },
  14. )