forked from airbrake/pybrake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (41 loc) · 1.4 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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
# Get version
exec(open('src/pybrake/constant.py').read())
setup(
name='pybrake',
version=version,
description='Python exception notifier for Airbrake',
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development',
],
keywords='airbrake exception error notifier',
project_urls={
'Documentation': 'https://airbrake.io',
'Funding': 'https://airbrake.io',
'Say Thanks!': 'https://airbrake.io',
'Source': 'https://github.com/airbrake/pybrake',
'Tracker': 'https://github.com/airbrake/pybrake/issues',
},
url='https://github.com/airbrake/pybrake',
author='Airbrake Technologies, Inc.',
author_email='[email protected]',
license='MIT',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=['tdigest'],
tests_require=['tdigest'],
include_package_data=True,
zip_safe=False
)