setup.cfg 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. [bdist_wheel]
  2. universal = 1
  3. [metadata]
  4. name = git-archive-all
  5. author = Ilya Kulakov
  6. author_email = kulakov.ilya@gmail.com
  7. url = https://github.com/Kentzo/git-archive-all
  8. description = Archive git repository with its submodules.
  9. license = MIT License
  10. license_file = LICENSE.txt
  11. classifiers =
  12. Development Status :: 5 - Production/Stable
  13. Environment :: Console
  14. Intended Audience :: Developers
  15. Intended Audience :: System Administrators
  16. License :: OSI Approved :: MIT License
  17. Natural Language :: English
  18. Programming Language :: Python :: Implementation :: CPython
  19. Programming Language :: Python :: Implementation :: PyPy
  20. Programming Language :: Python :: 2
  21. Programming Language :: Python :: 2.6
  22. Programming Language :: Python :: 2.7
  23. Programming Language :: Python :: 3
  24. Programming Language :: Python :: 3.4
  25. Programming Language :: Python :: 3.5
  26. Programming Language :: Python :: 3.6
  27. Programming Language :: Python :: 3.7
  28. Programming Language :: Python :: 3.8
  29. Programming Language :: Python :: 3.9
  30. Topic :: Software Development :: Version Control
  31. Topic :: System :: Archiving
  32. platforms =
  33. Darwin
  34. Linux
  35. Windows
  36. long_description = file: README.rst
  37. [options]
  38. zip_safe = 1
  39. python_requires = >=2.6,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,
  40. tests_require =
  41. colorama==0.4.1; python_version >= "2.7" and python_version < "3.5"
  42. coverage==4.5.4; python_version < "3.5"
  43. importlib-metadata==0.23; python_version >= "2.7" and python_version < "3.5"
  44. more-itertools==7.2.0; python_version >= "3.4" and python_version < "3.5"
  45. pycodestyle==2.4.0; python_version < "2.7"
  46. pycodestyle==2.5.0; python_version >= "2.7"
  47. pytest==3.2.5; python_version < "2.7"
  48. pytest==4.6.6; python_version >= "2.7" and python_version < "3.5"
  49. pytest==5.2.2; python_version >= "3.5"
  50. pytest-cov==2.5.1; python_version < "2.7"
  51. pytest-cov==2.8.1; python_version >= "2.7"
  52. pytest-mock==1.6.3; python_version < "2.7"
  53. pytest-mock==1.11.2; python_version >= "2.7"
  54. setuptools==36.8.0; python_version < "2.7"
  55. zipp==1.1.0; python_version >= "2.7" and python_version < "3.6"
  56. [tool:pytest]
  57. addopts = --cov=git_archive_all --cov-report=term --cov-branch --showlocals -vv
  58. filterwarnings = error
  59. [tox:tox]
  60. envlist =
  61. py26
  62. py27
  63. py34
  64. py35
  65. py36
  66. py37
  67. py38
  68. py39
  69. pypy
  70. pypy3
  71. skipsdist = true
  72. [testenv]
  73. deps = -rtest-requirements.txt
  74. commands = pytest {posargs}
  75. tox_pyenv_fallback = false
  76. [testenv:py26]
  77. install_command = pip install {opts} {packages}
  78. list_dependencies_command = pip freeze