Use Makefile to generate requirements
This commit is contained in:
parent
82a7176629
commit
720f6fdb78
10 changed files with 1188 additions and 175 deletions
51
pyproject.toml
Normal file
51
pyproject.toml
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
[project]
|
||||
name = 'newsreader'
|
||||
version = '0.4.0.0'
|
||||
authors = [{name = 'Sonny', email= 'sonnyba871@gmail.com'}]
|
||||
license = {text = 'GPL-3.0'}
|
||||
requires-python = '>=3.11'
|
||||
dependencies = [
|
||||
'django~=3.2',
|
||||
'celery~=4.4',
|
||||
'gunicorn~=20.0',
|
||||
'psycopg2',
|
||||
|
||||
'django-axes',
|
||||
'django-celery-beat~=2.0.0',
|
||||
'django-registration-redux~=2.7',
|
||||
'django-rest-framework',
|
||||
'drf-yasg',
|
||||
|
||||
'python-memcached',
|
||||
'python-dotenv~=0.12',
|
||||
|
||||
'sentry-sdk~=1.0',
|
||||
|
||||
'ftfy~=5.8',
|
||||
|
||||
'requests',
|
||||
'requests_oauthlib',
|
||||
|
||||
'feedparser',
|
||||
'bleach',
|
||||
'beautifulsoup4',
|
||||
'lxml'
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
testing = [
|
||||
'factory-boy',
|
||||
'freezegun',
|
||||
'black',
|
||||
'isort',
|
||||
'autoflake',
|
||||
'tblib',
|
||||
]
|
||||
|
||||
development = [
|
||||
'pip-tools>=6.13.0',
|
||||
'django-debug-toolbar',
|
||||
'django-extensions',
|
||||
]
|
||||
|
||||
ci = ['coverage>=5.3.1']
|
||||
Loading…
Add table
Add a link
Reference in a new issue