setup.py 727 B

1234567891011121314151617181920212223242526
  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',
  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. )