-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 737 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 737 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('VERSION') as version_file:
version = version_file.read().strip()
with open('README.rst') as readme_file:
readme = readme_file.read()
install_requires = [
'boto3>=1.4.0',
]
setup(
name='marquee',
version=version,
description='A simple Python logging formatter and handler for CloudWatch Events',
long_description=readme,
author='Herkermer Sherwood',
author_email='theherk@gmail.com',
url='https://github.com/theherk/marquee',
packages=find_packages(),
platforms=['all'],
install_requires=install_requires,
setup_requires=['pytest-runner'],
tests_require=[
'mock',
'pytest'
]
)