Skip to content

Commit

Permalink
Bump Python version and rearrange setup files so dependencies are at …
Browse files Browse the repository at this point in the history
…the bottom
  • Loading branch information
acabal committed Dec 2, 2023
1 parent d549feb commit 9dd6548
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,15 @@ def _get_version() -> str:
],
keywords="ebooks epub",
packages=find_packages(),

include_package_data=True,
entry_points={
"console_scripts": [
"se = se.main:main",
],
},
project_urls={
"Source": "https://standardebooks.org/tools",
},

############################################################
# WARNING!!!!!!
Expand All @@ -70,7 +78,7 @@ def _get_version() -> str:
# This toolset targets a specific version of Python, and libraries are pinned to specific
# versions to prevent surprise breakage. Don't edit this!
############################################################
python_requires=">=3.8,<=3.11",
python_requires=">=3.8,<=3.12",
install_requires=[
"cairosvg==2.7.1",
"chardet==5.2.0",
Expand All @@ -93,14 +101,5 @@ def _get_version() -> str:
"tinycss2==1.2.1",
"titlecase==2.4",
"unidecode==1.3.7"
],
include_package_data=True,
entry_points={
"console_scripts": [
"se = se.main:main",
],
},
project_urls={
"Source": "https://standardebooks.org/tools",
}
]
)

0 comments on commit 9dd6548

Please sign in to comment.