-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (29 loc) · 939 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (29 loc) · 939 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
import aws_ssh_sync
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="aws-ssh-sync",
version=aws_ssh_sync.__version__,
author="Szymon Biliński",
author_email="szymon.bilinski@gmail.com",
description="Generate 'ssh_config' files, based on current Amazon EC2 state.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sbilinski/aws-ssh-sync",
packages=setuptools.find_namespace_packages(),
entry_points={
"console_scripts": [
"aws_ssh_sync = aws_ssh_sync.main:main"
]
},
install_requires=["boto3>=1.9"],
classifiers=[
"Topic :: System :: Networking",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX"
],
python_requires='>=3.6',
)