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(), 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.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", 'Operating System :: MacOS :: MacOS X', 'Operating System :: POSIX :: Linux', ], )