Skip to content

Commit

Permalink
build: add missing dependencies to setup.py (#115)
Browse files Browse the repository at this point in the history
Also renaming directories so that we can `pip install .` works
to test locally
  • Loading branch information
alexbostock authored Nov 18, 2023
1 parent b5575e8 commit 47ed161
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def readme():
author='Ailin Venerus',
author_email='[email protected]',
packages=['scribemi'],
install_requires=['requests'],
install_requires=['requests', 'scribeauth', 'aws_requests_auth'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
Expand Down
4 changes: 2 additions & 2 deletions tests/test_ScribeMi.py → tests/test_scribemi.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from ScribeMi import MI
from ScribeMi.ScribeMi import UnauthenticatedException
from scribemi.ScribeMi import MI
from scribemi.ScribeMi import UnauthenticatedException
import unittest
import os
from dotenv import load_dotenv
Expand Down

0 comments on commit 47ed161

Please sign in to comment.