Sfoglia il codice sorgente

Bump version: 0.1.0 → 0.2.0

theenglishway (time) 7 anni fa
parent
commit
542221d23f
2 ha cambiato i file con 22 aggiunte e 22 eliminazioni
  1. 21 21
      setup.cfg
  2. 1 1
      twhatter/__init__.py

+ 21 - 21
setup.cfg

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

+ 1 - 1
twhatter/__init__.py

@@ -4,4 +4,4 @@
 
 __author__ = """theenglishway"""
 __email__ = 'me@theenglishway.eu'
-__version__ = '0.1.0'
+__version__ = '0.2.0'