Skip to content

Commit

Permalink
add pypi, update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Stas committed Jun 20, 2019
1 parent bb5f625 commit e1949d3
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 28 deletions.
51 changes: 25 additions & 26 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
[bumpversion]
current_version = 0.1.0
commit = True
tag = True

[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'

[bumpversion:file:submovements/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'

[bdist_wheel]
universal = 1

[flake8]
exclude = docs

[aliases]
# Define setup.py command aliases here
test = pytest

[tool:pytest]
collect_ignore = ['setup.py']

[bumpversion]
current_version = 0.1.1
commit = True
tag = True

[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'

[bumpversion:file:submovements/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'

[bdist_wheel]
universal = 1

[flake8]
exclude = docs

[aliases]
test = pytest

[tool:pytest]
collect_ignore = ['setup.py']

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/sstbrg/submovements',
version='0.1.0',
version='0.1.1',
zip_safe=False,
)
2 changes: 1 addition & 1 deletion submovements/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = """Stas Steinberg"""
__email__ = 'stanislavs1@mail.tau.ac.il'
__version__ = '0.1.0'
__version__ = '0.1.1'

0 comments on commit e1949d3

Please sign in to comment.