Skip to content

Commit

Permalink
Merge pull request #9 from KPrasch/master
Browse files Browse the repository at this point in the history
Direct bytestring-splitter installation at latest PyPI namespace.
  • Loading branch information
KPrasch committed Dec 10, 2018
2 parents 78d9d75 + ff18c63 commit 47bf963
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ verify_ssl = true
name = "pypi"

[packages]
bytestringsplitter = "*"
bytestring-splitter = "*"

[dev-packages]
pytest = "*"
Expand Down
93 changes: 93 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ def run(self):
sys.exit(info)


INSTALL_REQUIRES = ['bytestringsplitter']
EXTRAS_REQUIRE = {'testing': ['bumpversion'],
INSTALL_REQUIRES = ['bytestring-splitter']
EXTRAS_REQUIRE = {'testing': ['pytest', 'bumpversion'],
'docs': ['sphinx', 'sphinx-autobuild']}

setup(name=ABOUT['__title__'],
Expand All @@ -37,6 +37,7 @@ def run(self):
description=ABOUT['__summary__'],
extras_require=EXTRAS_REQUIRE,
install_requires=INSTALL_REQUIRES,
setup_requires=['pytest-runner'], # required for setup.py test
packages=['constant_sorrow'],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
Expand Down

0 comments on commit 47bf963

Please sign in to comment.