mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Make sure the package depends on watchfiles
This commit is contained in:
parent
61ca47c519
commit
7643e0e92b
1 changed files with 12 additions and 3 deletions
15
setup.py
15
setup.py
|
|
@ -8,9 +8,18 @@ from setuptools import find_packages, setup
|
|||
|
||||
version = "4.8.0"
|
||||
|
||||
requires = ['feedgenerator >= 1.9', 'jinja2 >= 2.7', 'pygments',
|
||||
'docutils>=0.15', 'blinker', 'unidecode', 'python-dateutil',
|
||||
'rich', 'backports-zoneinfo[tzdata] >= 0.2; python_version<"3.9"']
|
||||
requires = [
|
||||
'feedgenerator >= 1.9',
|
||||
'jinja2 >= 2.7',
|
||||
'pygments',
|
||||
'docutils>=0.15',
|
||||
'blinker',
|
||||
'unidecode',
|
||||
'python-dateutil',
|
||||
'rich',
|
||||
'backports-zoneinfo[tzdata] >= 0.2; python_version<"3.9"',
|
||||
'watchfiles'
|
||||
]
|
||||
|
||||
entry_points = {
|
||||
'console_scripts': [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue