diff --git a/README.md b/README.md new file mode 100644 index 0000000..4007ee4 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# ungleich_screening_task + +A micro project proposed as a screening task for the [Senior Django Developer](https://ungleich.ch/en-us/cms/jobs-ungleich/) position at [ungleich](https://ungleich.ch/). + +## Installation + +On a system, or in a virtual environment where [Python](https://www.python.org/) version 3.6 or above, and [`pip`](https://pip.pypa.io/) and [`setuptools`](https://pypi.org/project/setuptools/) are available, run the following command to install required modules: + +```sh +python -m pip install -r requirements.txt +``` diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..2786a43 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,14 @@ +# +# This file is autogenerated by pip-compile +# To update, run: +# +# pip-compile --output-file=requirements.txt +# +--trusted-host pypi.python.org +--trusted-host pypi.org +--trusted-host files.pythonhosted.org + +asgiref==3.2.7 # via django +django==3.0.6 # via ungleich_screening_task (setup.py) +pytz==2020.1 # via django +sqlparse==0.3.1 # via django diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..4b74b3a --- /dev/null +++ b/setup.py @@ -0,0 +1,15 @@ +from setuptools import setup + +requirements = [ + "django", +] + +setup( + name="ungleich_screening_task", + version="0.1.0", + description="", + author="Eric Redon", + author_email="eric.redon@coox.org", + python_requires=">=3.6", + install_requires=requirements, +)