setup.py 867 B

123456789101112131415161718192021222324252627282930
  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. author='Fabian Peter Hammerle',
  8. author_email='fabianpeter.hammerle@catalysts.cc',
  9. maintainer='Catalysts Space',
  10. maintainer_email='space@catalysts.cc',
  11. description="Python wrapper for libc\'s dlinfo and dyld_find on Mac",
  12. long_description=LONG_DESCRIPTION,
  13. url='https://code.grasp-open.com/grasp-tools/python-dlinfo',
  14. packages=setuptools.find_packages(),
  15. setup_requires=[
  16. 'setuptools_scm',
  17. ],
  18. tests_require=[
  19. 'pytest',
  20. 'pytest-cov',
  21. # https://github.com/PyCQA/pylint/issues/2694
  22. 'pylint>=2.3.0',
  23. ],
  24. classifiers=[
  25. 'Operating System :: MacOS :: MacOS X',
  26. 'Operating System :: POSIX :: Linux',
  27. ],
  28. )