This repository was archived by the owner on Jan 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 1.24 KB
/
setup.py
File metadata and controls
39 lines (34 loc) · 1.24 KB
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
#!/usr/bin/env python3
import sys
from setuptools import setup, find_packages
if not sys.version.startswith('3.6'):
sys.stderr.write("macupdate requires python 3.6\n")
sys.exit(-1)
with open("README.md") as rm_file:
long_description = rm_file.read()
setup(name='awsparams',
version='0.0.1',
description="A simple CLI and Library for adding/removing/renaming/copying AWS Param Store Parameters",
long_description=long_description,
author='BYU OIT Application Development',
author_email='it@byu.edu',
url='https://github.com/byu-oit/awsparams',
packages=find_packages(),
license="Apache 2",
install_requires=['click'],
zip_safe=True,
entry_points={
'console_scripts': ['macupdate=py_macupdate.cli:main']
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3 :: Only',
'Natural Language :: English',
'Topic :: Utilities'
]
)