Skip to content

Commit

Permalink
move requirements to the setup file
Browse files Browse the repository at this point in the history
  • Loading branch information
N3TC4T committed Feb 8, 2022
1 parent 0289713 commit 387a9a5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 25 deletions.
21 changes: 0 additions & 21 deletions requirements.txt

This file was deleted.

15 changes: 11 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,18 @@
packages=['xumm'],
include_package_data=True,
install_requires=[
"requests == 2.27.1",
"websocket-client == 1.2.3",
"six == 1.16.0",
"python-dotenv == 0.19.2"
"requests==2.27.1",
"websocket-client==1.2.3",
"six==1.16.0",
"python-dotenv==0.19.2"
],
extras_require={
'develop': [
'pytest==6.2.5',
'websockets==9.1',
'flake==8-4.0.1'
]
},
test_suite='pytest',
tests_require=['pytest'],
classifiers=[
Expand Down

0 comments on commit 387a9a5

Please sign in to comment.