forked from aws/git-remote-codecommit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 855 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
import os
import setuptools
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setuptools.setup(
name = 'git-remote-codecommit',
packages = ['git_remote_codecommit'],
version = '0.5',
description = 'Git remote prefix to simplify pushing to and pulling from CodeCommit.',
long_description = read('README.rst'),
author = 'Amazon Web Services',
url = 'https://github.com/awslabs/git-remote-codecommit',
license = 'Apache License 2.0',
install_requires = ['botocore >= 1.10.4'],
entry_points = {
'console_scripts': [
'git-remote-codecommit = git_remote_codecommit:main',
],
},
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
],
)