49 lines
878 B
TOML
49 lines
878 B
TOML
[project]
|
|
name = 'newsreader'
|
|
version = '0.5.0'
|
|
authors = [{name = 'Sonny', email= 'sonnyba871@gmail.com'}]
|
|
license = {text = 'GPL-3.0'}
|
|
requires-python = '>=3.11'
|
|
dependencies = [
|
|
'django~=4.2.0',
|
|
'celery~=5.0',
|
|
'psycopg~=3.1.10',
|
|
|
|
'django-axes~=6.0.4',
|
|
'django-celery-beat~=2.5.0',
|
|
'django-registration-redux~=2.12.0',
|
|
'djangorestframework~=3.14.0',
|
|
|
|
'pymemcache~=4.0.0',
|
|
'python-dotenv~=1.0.0',
|
|
|
|
'ftfy~=6.1.1',
|
|
|
|
'requests~=2.31.0',
|
|
'requests_oauthlib~=1.3.1',
|
|
|
|
'feedparser~=6.0.10',
|
|
'bleach~=6.0.0',
|
|
'beautifulsoup4~=4.12.2',
|
|
'lxml~=4.9.2'
|
|
]
|
|
|
|
[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']
|
|
|
|
production = ['gunicorn~=21.2.0', 'sentry-sdk~=1.26.0']
|