setup.cfg 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. [metadata]
  2. name = pytest
  3. description = pytest: simple powerful testing with Python
  4. long_description = file: README.rst
  5. url = https://docs.pytest.org/en/latest/
  6. project_urls =
  7. Source=https://github.com/pytest-dev/pytest
  8. Tracker=https://github.com/pytest-dev/pytest/issues
  9. author = Holger Krekel, Bruno Oliveira, Ronny Pfannschmidt, Floris Bruynooghe, Brianna Laugher, Florian Bruhin and others
  10. license = MIT license
  11. license_file = LICENSE
  12. keywords = test, unittest
  13. classifiers =
  14. Development Status :: 6 - Mature
  15. Intended Audience :: Developers
  16. License :: OSI Approved :: MIT License
  17. Operating System :: POSIX
  18. Operating System :: Microsoft :: Windows
  19. Operating System :: MacOS :: MacOS X
  20. Topic :: Software Development :: Testing
  21. Topic :: Software Development :: Libraries
  22. Topic :: Utilities
  23. Programming Language :: Python :: 2
  24. Programming Language :: Python :: 2.7
  25. Programming Language :: Python :: 3
  26. Programming Language :: Python :: 3.4
  27. Programming Language :: Python :: 3.5
  28. Programming Language :: Python :: 3.6
  29. Programming Language :: Python :: 3.7
  30. Programming Language :: Python :: 3.8
  31. Programming Language :: Python :: 3.9
  32. platforms = unix, linux, osx, cygwin, win32
  33. [options]
  34. zip_safe = no
  35. packages =
  36. _pytest
  37. _pytest._code
  38. _pytest._io
  39. _pytest.assertion
  40. _pytest.config
  41. _pytest.mark
  42. py_modules = pytest
  43. python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
  44. [options.entry_points]
  45. console_scripts =
  46. pytest=pytest:main
  47. py.test=pytest:main
  48. [build_sphinx]
  49. source-dir = doc/en/
  50. build-dir = doc/build
  51. all_files = 1
  52. [upload_sphinx]
  53. upload-dir = doc/en/build/html
  54. [bdist_wheel]
  55. universal = 1
  56. [check-manifest]
  57. ignore =
  58. _pytest/_version.py
  59. [devpi:upload]
  60. formats = sdist.tgz,bdist_wheel
  61. [egg_info]
  62. tag_build =
  63. tag_date = 0