Skip to content

Commit

Permalink
Load requirements from requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthieuBizien committed Jul 15, 2020
1 parent 73359de commit 9931650
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ logs
notes
downloads
venv/
env/
**.pyc
.env
.mypy_cache/
Expand Down
11 changes: 4 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from distutils.core import setup

from pkg_resources import parse_requirements

setup(
name='roam_to_git',
packages=['roam_to_git'],
Expand All @@ -11,13 +13,8 @@
url='https://github.com/MatthieuBizien/roam-to-git',
download_url='https://github.com/MatthieuBizien/roam-to-git/archive/v0.1.tar.gz',
keywords=['ROAMRESEARCH', 'GIT', 'BACKUP'],
install_requires=[
'gitpython',
'loguru',
'pyppeteer',
'python-dotenv',
'psutil'
],
install_requires=[str(requirement) for requirement in
parse_requirements(open("requirements.txt"))],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 9931650

Please sign in to comment.