setup.cfg 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. markers =
  19. send_request: mark a test as requiring to send a specific web request (slow).
  20. [coverage:run]
  21. branch = True
  22. source = twhatter, tests
  23. [coverage:report]
  24. precision = 2
  25. [coverage:paths]
  26. source =
  27. .
  28. /tmp/build/*/source/
  29. [metadata]
  30. name = twhatter
  31. version = twhatter.__version__
  32. author = theenglishway
  33. author_email = me@theenglishway.eu
  34. classifiers =
  35. Development Status :: 2 - Pre-Alpha
  36. Intended Audience :: Developers
  37. License :: OSI Approved :: BSD License
  38. Natural Language :: English
  39. Programming Language :: Python :: 3
  40. Programming Language :: Python :: 3.6
  41. description = Scraper for Twitter
  42. long_description = file: README.rst, HISTORY.rst
  43. license = BSD license
  44. keywords = twhatter
  45. url = https://code.theenglishway.eu/theenglishway-utils/twhatter
  46. [options]
  47. packages = find:
  48. zip_safe = False
  49. include_package_data = True
  50. setup_requires =
  51. pytest-runner
  52. install_requires =
  53. bs4
  54. lxml
  55. requests
  56. Click
  57. sqlalchemy
  58. ipython
  59. user_agent
  60. tests_require =
  61. pytest
  62. [options.packages.find]
  63. exclude =
  64. docs
  65. tests
  66. tests.*
  67. [options.entry_points]
  68. console_scripts =
  69. twhatter = twhatter.cli:main
  70. [options.extras_require]
  71. test =
  72. pytest