-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (32 loc) · 1.02 KB
/
setup.py
File metadata and controls
37 lines (32 loc) · 1.02 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
import os
from setuptools import setup
def read(fname):
return open(
os.path.join(
os.path.dirname(__file__), fname)
).read()
setup(
name='awsenviron',
license='MIT',
version='0.0.7',
url='https://github.com/douglasfarinelli/python-awsenviron',
author='Douglas Farinelli',
author_email='douglas.farinelli@gmail.com',
keywords='env python aws parameter-store',
description='Load environ vars from AWS Parameter Store',
long_description=read('README.md'),
py_modules=['awsenviron'],
python_requires='>=2.7',
install_requires=['boto3'],
platforms='any',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)