This repository has been archived by the owner on Jun 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
executable file
·55 lines (52 loc) · 1.7 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
#!/usr/bin/env python
import re
import os
from setuptools import setup, find_packages
with open('./requirements.txt', 'r') as reqs_file:
reqs = reqs_file.readlines()
# Get version
with open(os.path.join('epsagon', 'constants.py'), 'rt') as consts_file:
version = re.search(r'__version__ = \'(.*?)\'', consts_file.read()).group(1)
setup(
name='epsagon',
version=version,
description='Epsagon Instrumentation for Python',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Epsagon',
author_email='[email protected]',
url='https://github.com/epsagon/epsagon-python',
packages=find_packages(exclude=('tests', 'examples')),
package_data={'epsagon': ['*.pem']},
install_requires=reqs,
license='MIT',
setup_requires=['pytest-runner'],
tests_require=['pytest'],
entry_points={
'epsagon': ['string = epsagon:auto_load']
},
keywords=[
'serverless',
'microservices',
'epsagon',
'tracing',
'distributed-tracing',
'lambda',
'aws-lambda',
'debugging',
'monitoring'
],
classifiers=(
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
)
)