Skip to content

Commit

Permalink
ENH: Stable release
Browse files Browse the repository at this point in the history
  • Loading branch information
jaidevd committed Jan 6, 2020
1 parent 059c450 commit 00a62a6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ Usage
'platform 9.75'
.. |Build Status| image:: https://travis-ci.com/jaidevd/numerizer.svg?branch=dev
.. |Build Status| image:: https://travis-ci.com/jaidevd/numerizer.svg?branch=master
:target: https://travis-ci.com/jaidevd/numerizer
1 change: 1 addition & 0 deletions numerizer/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .numerizer import numerize # NOQA: F401
File renamed without changes.
5 changes: 1 addition & 4 deletions numerizer.py → numerizer/numerizer.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
import re
import consts
from . import consts
import sys


__version__ = "0.1.0"


HYPHENATED = re.compile(r' +|([^\d])-([^\d])')
isub = lambda x, y, s: re.sub(x, y, s, flags=re.IGNORECASE) # noqa: E731

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
'Documentation': 'https://github.com/jaidevd/numerizer/tree/master/README.rst',
'Source Code': 'https://github.com/jaidevd/numerizer'
}
VERSION = '0.1.4'

# Requirements
install_requires = []

# Setup
import numerizer # NOQA: E402
setup(
name=NAME,
maintainer=MAINTAINER,
Expand All @@ -36,7 +36,7 @@
license=LICENSE,
url=URL,
download_url=DOWNLOAD_URL,
version=numerizer.__version__,
version=VERSION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=install_requires
Expand Down

0 comments on commit 00a62a6

Please sign in to comment.