Skip to content

Commit

Permalink
Updated Configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
yubarajshrestha committed Jun 19, 2022
1 parent 38debe3 commit 3279e9e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ format: ## Format code with Black
black src
black tests
coverage: ## Run package tests and upload coverage reports
python -m pytest --cov-report term --cov-report xml --cov=src/masonite/masonite_audit tests
python -m pytest --cov-report term --cov-report xml --cov=src/masonite/socketio_driver tests
publish: ## Publish package to pypi
python setup.py sdist bdist_wheel
twine upload dist/* --verbose
rm -fr build dist .egg src/masonite_audit.egg-info
rm -fr build dist .egg src/socketio_driver.egg-info
pypirc: ## Copy the template .pypirc in the repo to your home directory
cp .pypirc ~/.pypirc
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@
long_description = fh.read()

setup(
name="masonite_socketio_driver",
version='2.0.0',
name="socketio_driver",
version='2.0.1',
packages=[
"masonite_socketio_driver",
"masonite_socketio_driver.drivers",
"masonite_socketio_driver.providers"
"socketio_driver",
"socketio_driver.config",
"socketio_driver.drivers",
"socketio_driver.providers"
],
package_dir={"": "src"},
description="Socket IO Broadcast Driver for Masonite",
Expand Down

0 comments on commit 3279e9e

Please sign in to comment.