├── .gitignore ├── AUTHORS.txt ├── LICENSE.txt ├── README.rst ├── TODO.txt ├── setup.cfg ├── setup.py └── setuptools_git ├── __init__.py ├── tests.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msabramo/setuptools-git/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msabramo/setuptools-git/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msabramo/setuptools-git/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msabramo/setuptools-git/HEAD/README.rst -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msabramo/setuptools-git/HEAD/TODO.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msabramo/setuptools-git/HEAD/setup.py -------------------------------------------------------------------------------- /setuptools_git/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msabramo/setuptools-git/HEAD/setuptools_git/__init__.py -------------------------------------------------------------------------------- /setuptools_git/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msabramo/setuptools-git/HEAD/setuptools_git/tests.py -------------------------------------------------------------------------------- /setuptools_git/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msabramo/setuptools-git/HEAD/setuptools_git/utils.py --------------------------------------------------------------------------------