setup.py 785 B

1234567891011121314151617181920212223242526272829
  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='Catalysts Space',
  8. maintainer_email='space@catalysts.cc',
  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/Catalysts/python-dlinfo',
  13. packages=setuptools.find_packages(),
  14. setup_requires=[
  15. 'setuptools_scm',
  16. ],
  17. tests_require=[
  18. 'pytest',
  19. 'pytest-cov',
  20. # https://github.com/PyCQA/pylint/issues/2694
  21. 'pylint>=2.3.0',
  22. ],
  23. classifiers=[
  24. 'Operating System :: MacOS :: MacOS X',
  25. 'Operating System :: POSIX :: Linux',
  26. ],
  27. )