set repo=\\serverName\share\repos\myRepo.git
mkdir %repo%
pushd %repo%
git --bare init --shared
popd
| from setuptools import find_packages, setup | |
| from package import Package | |
| setup( | |
| name='packagename', | |
| url='http://example.com/packagename' | |
| author='Author Name', | |
| author_email='[email protected]', | |
| packages=find_packages(), | |
| include_package_data=True, |
| from setuptools import Command | |
| import shlex | |
| import subprocess | |
| import os | |
| WHEELHOUSE = "wheelhouse" | |
| class Package(Command): | |
| """Package Code and Dependencies into wheelhouse""" |
| # Manifest syntax https://docs.python.org/2/distutils/sourcedist.html | |
| graft wheelhouse | |
| recursive-exclude __pycache__ *.pyc *.pyo *.orig | |
| exclude *.js* | |
| exclude *.git* | |
| exclude *.coveragerc | |
| exclude *.sh | |
| exclude proc* |