This repository has been archived by the owner on Oct 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
pyproject.toml
64 lines (61 loc) · 1.49 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "PyJobs"
version = "0.1.0"
description = "A job board website made for software development professionals."
authors = ["Vinicius Mesel <vinicius@pyjobs.com.br>"]
[tool.poetry.dependencies]
python = "3.8.5"
dj-database-url = "*"
Django = "^3.1.2"
django-appconf = "*"
django-bootstrap3 = "*"
django-extensions = "*"
django-filter = "*"
django-material = "*"
django-model-utils = "*"
django-recaptcha = "*"
Django-Select2 = ">7.0.2"
django-widget-tweaks = "*"
gunicorn = "*"
mailchimp3 = "*"
psycopg2-binary = "*"
python-dateutil = "*"
python-decouple = "*"
python-telegram-bot = "*"
pytz = "*"
raven = "*"
requests = "*"
restless = "*"
sendgrid = "*"
sendgrid-django = "^4.2.0"
tqdm = "*"
whitenoise = "*"
pillow = "*"
ipython = "==7.16.1"
six = "^1.15.0"
parso = "^0.8.0"
PyGithub = "^1.53"
mistune = "2.0.0a4"
bs4 = "^0.0.1"
pywebpush = "1.9.4"
django-letsencrypt = "^4.0.0"
Unipath = "^1.1"
scrape-linkedin = {git = "https://github.com/austinoboyle/scrape-linkedin-selenium.git"}
linkedin-scraper = "^2.7.2"
model-bakery = "^1.2.1"
social-auth-app-django = "^4.0.0"
markdownify = "^0.6.5"
django-webpush = {git = "https://github.com/safwanrahman/django-webpush"}
django-compress-staticfiles = {git = "https://github.com/armandtvz/django-compress-staticfiles.git"}
[tool.poetry.dev-dependencies]
black = "*"
coverage = "*"
ipdb = "*"
isort = "*"
model-mommy = "*"
nose = "*"
responses = "*"
freezegun = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"