setup.py 325 B

12345678910111213141516
  1. import setuptools
  2. setuptools.setup(
  3. name='dlinfo',
  4. use_scm_version=True,
  5. packages=setuptools.find_packages(),
  6. setup_requires=[
  7. 'setuptools_scm',
  8. ],
  9. tests_require=[
  10. 'pytest',
  11. 'pytest-cov',
  12. # https://github.com/PyCQA/pylint/issues/2694
  13. 'pylint>=2.3.0',
  14. ],
  15. )