Skip to content

Commit

Permalink
Merge pull request #29 from rsiminel/master
Browse files Browse the repository at this point in the history
fix requirements
  • Loading branch information
abretaud authored Apr 19, 2024
2 parents e94a781 + 316ea27 commit 6688997
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 19 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ PyYAML
requests
biomaj
biomaj-core>=3.0.11
waitress
23 changes: 4 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,8 @@
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()

requires = [
'pyramid==1.5.1',
'pyramid_chameleon',
'pyramid_debugtoolbar',
'waitress',
'pymongo>=3.12.3,<4',
'py-bcrypt',
'ldap3',
'gunicorn',
'gevent',
'future',
'python-consul',
'PyYAML',
'requests',
'biomaj',
'biomaj-core'
]
with open('requirements.txt') as f:
requirements = f.read().splitlines()

setup(name='biomajwatcher',
version='3.1.5',
Expand All @@ -44,8 +29,8 @@
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
install_requires=requirements,
tests_require=requirements,
test_suite="biomajwatcher",
entry_points="""\
[paste.app_factory]
Expand Down

0 comments on commit 6688997

Please sign in to comment.