Skip to content

Commit

Permalink
Update setup.py to install dependencies automatically with PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
jomy-kk committed Mar 10, 2024
2 parents 8fecef5 + b5ab489 commit b6082dc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ jupyterlab-widgets==1.1.1
keyring==23.7.0
kiwisolver==1.4.2
lazy-object-proxy==1.7.1
-e git+https://github.com/jomy-kk/IT-LongTermBiosignals.git@0a92a7fe0196e060c455fc073282e841df427158#egg=LongTermBiosignals
lxml==4.9.1
markdown-it-py==2.1.0
MarkupSafe==2.1.1
Expand Down
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@
with open("README.md", "r", encoding = "utf-8") as fh:
long_description = fh.read()

with open('requirements.txt') as f:
requirements = f.read().splitlines()

print("Installing dependencies...\n", requirements)

setup(
name='LongTermBiosignals',
version='1.0.1',
packages=find_packages(where="src"),
package_dir={'': 'src'},
package_data={'': ['src', 'requirements.txt']},
install_requires=requirements,
url='https://github.com/jomy-kk/IT-LongTermBiosignals',
license='',
author='João Saraiva, Mariana Abreu',
Expand Down

0 comments on commit b6082dc

Please sign in to comment.