Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Direct bytestring-splitter installation at latest PyPI namespace. #9

Merged
merged 1 commit into from
Dec 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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