setup.cfg 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 = attr: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. dataclasses; python_version < "3.7"
  61. tests_require =
  62. pytest
  63. [options.packages.find]
  64. exclude =
  65. docs
  66. tests
  67. tests.*
  68. [options.entry_points]
  69. console_scripts =
  70. twhatter = twhatter.cli:main
  71. [options.extras_require]
  72. test =
  73. pytest