forked from github/pelican
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"
|
version = "4.8.0"
|
||||||
|
|
||||||
requires = ['feedgenerator >= 1.9', 'jinja2 >= 2.7', 'pygments',
|
requires = [
|
||||||
'docutils>=0.15', 'blinker', 'unidecode', 'python-dateutil',
|
'feedgenerator >= 1.9',
|
||||||
'rich', 'backports-zoneinfo[tzdata] >= 0.2; python_version<"3.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 = {
|
entry_points = {
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue