|
@@ -1,5 +1,5 @@
|
|
|
[bumpversion]
|
|
[bumpversion]
|
|
|
-current_version = 0.1.0
|
|
|
|
|
|
|
+current_version = 0.2.0
|
|
|
commit = True
|
|
commit = True
|
|
|
tag = True
|
|
tag = True
|
|
|
allow_dirty = True
|
|
allow_dirty = True
|
|
@@ -15,13 +15,12 @@ universal = 1
|
|
|
exclude = docs
|
|
exclude = docs
|
|
|
|
|
|
|
|
[aliases]
|
|
[aliases]
|
|
|
-# Define setup.py command aliases here
|
|
|
|
|
test = pytest
|
|
test = pytest
|
|
|
|
|
|
|
|
[tool:pytest]
|
|
[tool:pytest]
|
|
|
collect_ignore = ['setup.py']
|
|
collect_ignore = ['setup.py']
|
|
|
-markers =
|
|
|
|
|
- send_request: mark a test as requiring to send a specific web request (slow).
|
|
|
|
|
|
|
+markers =
|
|
|
|
|
+ send_request: mark a test as requiring to send a specific web request (slow).
|
|
|
|
|
|
|
|
[coverage:run]
|
|
[coverage:run]
|
|
|
branch = True
|
|
branch = True
|
|
@@ -31,16 +30,16 @@ source = twhatter, tests
|
|
|
precision = 2
|
|
precision = 2
|
|
|
|
|
|
|
|
[coverage:paths]
|
|
[coverage:paths]
|
|
|
-source =
|
|
|
|
|
- .
|
|
|
|
|
- /tmp/build/*/source/
|
|
|
|
|
|
|
+source =
|
|
|
|
|
+ .
|
|
|
|
|
+ /tmp/build/*/source/
|
|
|
|
|
|
|
|
[metadata]
|
|
[metadata]
|
|
|
name = twhatter
|
|
name = twhatter
|
|
|
version = attr:twhatter.__version__
|
|
version = attr:twhatter.__version__
|
|
|
author = theenglishway
|
|
author = theenglishway
|
|
|
author_email = me@theenglishway.eu
|
|
author_email = me@theenglishway.eu
|
|
|
-classifiers =
|
|
|
|
|
|
|
+classifiers =
|
|
|
Development Status :: 2 - Pre-Alpha
|
|
Development Status :: 2 - Pre-Alpha
|
|
|
Intended Audience :: Developers
|
|
Intended Audience :: Developers
|
|
|
License :: OSI Approved :: BSD License
|
|
License :: OSI Approved :: BSD License
|
|
@@ -57,30 +56,31 @@ url = https://code.theenglishway.eu/theenglishway-utils/twhatter
|
|
|
packages = find:
|
|
packages = find:
|
|
|
zip_safe = False
|
|
zip_safe = False
|
|
|
include_package_data = True
|
|
include_package_data = True
|
|
|
-setup_requires =
|
|
|
|
|
|
|
+setup_requires =
|
|
|
pytest-runner
|
|
pytest-runner
|
|
|
-install_requires =
|
|
|
|
|
- bs4
|
|
|
|
|
- lxml
|
|
|
|
|
- requests
|
|
|
|
|
|
|
+install_requires =
|
|
|
|
|
+ bs4
|
|
|
|
|
+ lxml
|
|
|
|
|
+ requests
|
|
|
Click
|
|
Click
|
|
|
- sqlalchemy
|
|
|
|
|
- ipython
|
|
|
|
|
- user_agent
|
|
|
|
|
- dataclasses; python_version < "3.7"
|
|
|
|
|
-tests_require =
|
|
|
|
|
|
|
+ sqlalchemy
|
|
|
|
|
+ ipython
|
|
|
|
|
+ user_agent
|
|
|
|
|
+ dataclasses; python_version < "3.7"
|
|
|
|
|
+tests_require =
|
|
|
pytest
|
|
pytest
|
|
|
|
|
|
|
|
[options.packages.find]
|
|
[options.packages.find]
|
|
|
-exclude =
|
|
|
|
|
|
|
+exclude =
|
|
|
docs
|
|
docs
|
|
|
tests
|
|
tests
|
|
|
tests.*
|
|
tests.*
|
|
|
|
|
|
|
|
[options.entry_points]
|
|
[options.entry_points]
|
|
|
-console_scripts =
|
|
|
|
|
|
|
+console_scripts =
|
|
|
twhatter = twhatter.cli:main
|
|
twhatter = twhatter.cli:main
|
|
|
|
|
|
|
|
[options.extras_require]
|
|
[options.extras_require]
|
|
|
-test =
|
|
|
|
|
|
|
+test =
|
|
|
pytest
|
|
pytest
|
|
|
|
|
+
|