-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (47 loc) · 1.61 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
from setuptools import setup, find_packages
VERSION = "0.9.3"
with open("README.md", encoding="utf-8") as fh:
pypi_header = """
<p align="center"><b>Base python module for the DAVE project</b></p>
**Important:** It is not recommended to install DAVE directly from pypi, you
should rather use the install script as show in the "Project Setup" section.
"""
long_description = pypi_header + fh.read()
long_description.replace(
'src=".pictures/phase.png"',
f"unavailable picture",
)
setup(
name="davext",
version=VERSION,
author="maxmarsc",
python_requires=">3.10.1",
author_email="[email protected]",
url="https://github.com/maxmarsc/dave",
description="base module for the DAVE debugger extension",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["matplotlib==3.9.2", "customtkinter==5.2.2"],
license="GPLV3",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Software Development :: Debuggers",
],
packages=find_packages(),
package_data={
"dave": [
"assets/lldb_init.py",
"assets/.gdbinit",
"assets/.lldbinit",
"assets/dave",
"assets/dave_logo_v6.png",
],
":": ["LICENSE"],
},
include_package_data=True,
)