-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (34 loc) · 1.14 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
# SPDX-FileCopyrightText: 2021 Andreas Ziegler <andreas.ziegler@fau.de>
#
# SPDX-License-Identifier: MIT
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name = 'pylibdebuginfod',
description = 'Python bindings for libdebuginfod',
long_description=long_description,
long_description_content_type="text/markdown",
author = 'Andreas Ziegler',
author_email = 'andreas.ziegler@fau.de',
url = 'https://github.com/rupran/pylibdebuginfod',
version = '0.3',
license = 'MIT',
packages = [
'libdebuginfod'
],
install_requires = [
'pyelftools'
],
classifiers = [
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Debuggers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)