-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathsetup.py
34 lines (28 loc) · 954 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
31
32
33
34
#!/usr/bin/env python
import os
import setuptools
__version__ = '1.17'
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 = __version__,
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.17.0'],
entry_points = {
'console_scripts': [
'git-remote-codecommit = git_remote_codecommit:main',
],
},
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
],
)