setup.cfg 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. [bumpversion]
  2. current_version = 0.1.0
  3. commit = True
  4. tag = True
  5. allow_dirty = True
  6. [bumpversion:file:twhatter/__init__.py]
  7. search = __version__ = '{current_version}'
  8. replace = __version__ = '{new_version}'
  9. [bdist_wheel]
  10. universal = 1
  11. [flake8]
  12. exclude = docs
  13. [aliases]
  14. # Define setup.py command aliases here
  15. test = pytest
  16. [tool:pytest]
  17. collect_ignore = ['setup.py']
  18. [coverage:run]
  19. branch = True
  20. source = twhatter, tests
  21. [coverage:report]
  22. precision = 2
  23. [coverage:paths]
  24. source =
  25. .
  26. /tmp/build/*/source/
  27. [metadata]
  28. name = twhatter
  29. version = twhatter.__version__
  30. author = theenglishway
  31. author_email = me@theenglishway.eu
  32. classifiers =
  33. Development Status :: 2 - Pre-Alpha
  34. Intended Audience :: Developers
  35. License :: OSI Approved :: BSD License
  36. Natural Language :: English
  37. Programming Language :: Python :: 3
  38. Programming Language :: Python :: 3.6
  39. description = Scraper for Twitter
  40. long_description = file: README.rst, HISTORY.rst
  41. license = BSD license
  42. keywords = twhatter
  43. url = https://code.theenglishway.eu/theenglishway-utils/twhatter
  44. [options]
  45. packages = find:
  46. zip_safe = False
  47. include_package_data = True
  48. setup_requires =
  49. pytest-runner
  50. install_requires =
  51. bs4
  52. lxml
  53. requests
  54. Click
  55. sqlalchemy
  56. ipython
  57. tests_require =
  58. pytest
  59. [options.packages.find]
  60. exclude =
  61. docs
  62. tests
  63. tests.*
  64. [options.entry_points]
  65. console_scripts =
  66. twhatter = twhatter.cli:main
  67. [options.extras_require]
  68. test =
  69. pytest
  70. markers =
  71. send_request: mark a test as requiring to send a specific web request (slow).