-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·55 lines (51 loc) · 1.72 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
52
53
54
55
from setuptools import setup, find_packages
try:
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
class bdist_wheel(_bdist_wheel):
def finalize_options(self):
_bdist_wheel.finalize_options(self)
self.root_is_pure = True
except ImportError:
bdist_wheel = None
with open('waddle/version', 'r') as f:
version = f.read()
version = version.strip()
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='waddle',
version=version,
description="A pathy wrapper around aws parameter store",
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: BSD License',
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
cmdclass={'bdist_wheel': bdist_wheel},
keywords='aws python parameter-store kms',
author='Preetam Shingavi',
author_email='[email protected]',
url='https://github.com/angry-penguins/waddle',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=[
'pyyaml',
'boto3>=1.9.0',
'click>=7.0',
'murmuration>=0.7',
'ruamel.yaml>=0.15.87',
'halo>=0.0.26',
],
entry_points={
'console_scripts': [
'waddle=waddle.cli:main',
]
})