Modified build script to avoid warnings

pull/2914/head
Ozzie Isaacs 7 months ago
parent 65f3ecb924
commit f0f8011d24

@ -13,7 +13,7 @@ author = @OzzieIsaacs
author_email = Ozzie.Fernandez.Isaacs@googlemail.com
maintainer = @OzzieIsaacs
license = GPLv3+
license_file = LICENSE
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: GNU Affero General Public License v3
@ -58,7 +58,10 @@ install_requires =
chardet>=3.0.0,<4.1.0
advocate>=1.0.0,<1.1.0
Flask-Limiter>=2.3.0,<3.5.0
[options.packages.find]
where = src
include = cps/services*
[options.extras_require]
gdrive =

@ -40,7 +40,8 @@ def find_version(*file_paths):
raise RuntimeError("Unable to find version string.")
setup(
packages=find_packages("src"),
package_dir = {'': 'src'},
#packages=find_packages("src"),
#package_dir = {'': 'src'},
#package_data={"calibreweb": ["cps/translations/*/LC_MESSAGES/*.mo"], "templates": ["*.html"]},
version=find_version("src", "calibreweb", "cps", "constants.py")
)

Loading…
Cancel
Save