-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (28 loc) · 1.04 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
import setuptools
with open("README.rst", "r") as readme:
LONG_DESCRIPTION = readme.read()
setuptools.setup(
name="dlinfo",
use_scm_version=True,
maintainer='Cloudflight Space',
maintainer_email='aerospace@cloudflight.io',
description="Python wrapper for libc\'s dlinfo and dyld_find on Mac",
long_description=LONG_DESCRIPTION,
license="MIT",
url="https://github.com/cloudflightio/python-dlinfo",
packages=setuptools.find_packages(),
python_requires=">=3.8", # >=3.6 for f-strings, <3.8 untested
setup_requires=["setuptools_scm"],
tests_require=["pytest"],
classifiers=[
# https://pypi.org/classifiers/
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
# see .github/workflows/python.yml
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
],
)