Initial setup with requirements on Django 3 and Python 3.6

This commit is contained in:
coox 2020-05-06 12:16:00 +02:00
parent 8b425c5956
commit dbc445e0eb
3 changed files with 40 additions and 0 deletions

11
README.md Normal file
View File

@ -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
```

14
requirements.txt Normal file
View File

@ -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

15
setup.py Normal file
View File

@ -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,
)