forked from Catalysts/python-dlinfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.08 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
import setuptools
with open("README.rst", "r") as readme:
LONG_DESCRIPTION = readme.read()
setuptools.setup(
name="dlinfo",
use_scm_version=True,
maintainer="Fabian Peter Hammerle",
maintainer_email="[email protected]",
description="Python wrapper for libc's dlinfo and dyld_find on Mac",
long_description=LONG_DESCRIPTION,
license="MIT",
url="https://github.com/fphammerle/python-dlinfo",
packages=setuptools.find_packages(),
python_requires=">=3.9", # >=3.6 for f-strings, <3.9 untested
setup_requires=["setuptools_scm"],
tests_require=["pytest"],
classifiers=[
# https://pypi.org/classifiers/
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
# .github/workflows/python.yml
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
],
)