-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (41 loc) · 1.37 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
import codecs
import os.path
import re
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
return codecs.open(os.path.join(here, *parts), 'r').read()
install_requires = [
'boto3'
]
setup_options = dict(
name='iam-ssh-cli',
version='{{VERSION_PLACEHOLDER}}',
description='sync IAM ssh keys to Linux boxes.',
long_description=read('README.rst'),
author='Chathuranga Abeyrathna',
author_email='[email protected]',
url='https://github.com/chaturanga50/iam-ssh-cli',
scripts=['bin/iam-ssh-cli'],
packages=find_packages(exclude=['tests*']),
include_package_data=True,
install_requires=install_requires,
extras_require={},
license="Apache License 2.0",
python_requires=">= 3.7",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
project_urls={
'Bug Reports': 'https://github.com/chaturanga50/iam-ssh-cli/issues',
'Source': 'https://github.com/chaturanga50/iam-ssh-cli',
'Changelog': 'https://github.com/chaturanga50/iam-ssh-cli/blob/develop/CHANGELOG.rst',
}
)
setup(**setup_options)