-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
56 lines (47 loc) · 1.58 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
56
import ast
import os
import re
from setuptools import setup
def get_version() -> str:
version_file = open(os.path.join("elastic_apm_asgi", "version.py"), encoding="utf-8")
for line in version_file:
if line.startswith("__version__"):
version = ast.literal_eval(line.split(" = ")[1])
return version
return "unknown"
def get_long_description():
"""
Return the README.
"""
return open('README.md', 'r', encoding="utf8").read()
def get_packages(package):
"""
Return root package and all sub-packages.
"""
return [dirpath
for dirpath, dirnames, filenames in os.walk(package)
if os.path.exists(os.path.join(dirpath, '__init__.py'))]
setup(
name='elastic-apm-asgi',
version=get_version(),
url='https://github.com/Mdslino/Elastic-APM-ASGI',
license='BSD',
description='Elastic APM integration for ASGI frameworks.',
long_description=get_long_description(),
long_description_content_type='text/markdown',
author='Marcelo Lino',
author_email='mdslino@gmail.com',
packages=get_packages('elastic_apm_asgi'),
install_requires=['elastic-apm'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)