FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit c70fb1f3 authored by Monty Dawson's avatar Monty Dawson :coffee:
Browse files

Use correct install_requires in setup.py

parent 3004f0af
No related branches found
No related tags found
1 merge request!1Initial implementation
Pipeline #172849 passed
...@@ -20,13 +20,13 @@ setup( ...@@ -20,13 +20,13 @@ setup(
long_description=open('README.md').read(), long_description=open('README.md').read(),
long_description_content_type='text/markdown', long_description_content_type='text/markdown',
url='https://gitlab.developers.cam.ac.uk/uis/devops/django/api-gateway-auth', url='https://gitlab.developers.cam.ac.uk/uis/devops/django/api-gateway-auth',
version='0.0.1-rc2', version='0.0.1-rc3',
license='MIT', license='MIT',
author='DevOps Division, University Information Services, University of Cambridge', author='DevOps Division, University Information Services, University of Cambridge',
author_email='devops@uis.cam.ac.uk', author_email='devops@uis.cam.ac.uk',
packages=find_packages(), packages=find_packages(),
include_package_data=True, include_package_data=True,
install_requires=['django>=3.2', 'ibisclient~=1.3'], install_requires=load_requirements('requirements.txt'),
classifiers=[ classifiers=[
'Development Status :: 3 - Alpha ', 'Development Status :: 3 - Alpha ',
'Environment :: Web Environment', 'Environment :: Web Environment',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment