bootstrap/setup.py
Kenneth Benzie (Benie) 73c266e3f2 Add python package to setup SSH keys
Supports setting SSH keys for the following services:

* GitHub
* GitLab
* BitBucket Cloud
* Gogs
2018-01-05 20:01:43 +00:00

12 lines
207 B
Python

"""Setup bootstrap package."""
from setuptools import find_packages, setup
setup(
name='bootstrap',
version='0.1.0',
packages=find_packages(),
install_requires=[
'requests',
])