setup.py 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. import setuptools
  2. with open('README.rst', 'r') as readme:
  3. LONG_DESCRIPTION = readme.read()
  4. setuptools.setup(
  5. name='dlinfo',
  6. use_scm_version=True,
  7. maintainer='Cloudflight Space',
  8. maintainer_email='aerospace@cloudflight.io',
  9. description="Python wrapper for libc\'s dlinfo and dyld_find on Mac",
  10. long_description=LONG_DESCRIPTION,
  11. license="MIT",
  12. url='https://github.com/cloudflightio/python-dlinfo',
  13. packages=setuptools.find_packages(),
  14. setup_requires=[
  15. 'setuptools_scm',
  16. ],
  17. tests_require=['pytest'],
  18. classifiers=[
  19. # https://pypi.org/classifiers/
  20. "Development Status :: 5 - Production/Stable",
  21. "Intended Audience :: Developers",
  22. # see .github/workflows/python.yml
  23. "Programming Language :: Python :: 3.5",
  24. "Programming Language :: Python :: 3.6",
  25. "Programming Language :: Python :: 3.7",
  26. "Programming Language :: Python :: 3.8",
  27. "Programming Language :: Python :: 3.9",
  28. 'Operating System :: MacOS :: MacOS X',
  29. 'Operating System :: POSIX :: Linux',
  30. ],
  31. )