Supports setting SSH keys for the following services: * GitHub * GitLab * BitBucket Cloud * Gogs
12 lines
207 B
Python
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',
|
|
])
|