-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (27 loc) · 944 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.md') as readme_file:
long_description = readme_file.read()
setup(
name = 'zappa_sentry',
packages = ['zappa_sentry'],
version = '0.4.1',
description = 'Easy integration with sentry for zappa apps',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'João Miguel Neves',
author_email = 'joao@silvaneves.org',
url = 'https://github.com/jneves/zappa-sentry',
download_url = 'https://github.com/jneves/zappa-sentry/archive/0.4.1.tar.gz',
keywords = 'logging zappa sentry',
install_requires=[
'sentry-sdk'
],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
]
)