Fix: remove install_requires because it's unclear

This commit is contained in:
Thomas Klaehn 2020-01-08 12:07:54 +01:00
parent d65eeaf0fd
commit 9761814f6f

View File

@ -12,7 +12,7 @@ AUTHOR = 'Thomas Klaehn'
EMAIL = 'tkl@blackfinn.de'
PACKAGES = ['bicycle_statistics', 'gpx_parser', 'gpx2html']
SCRIPTS = ['example-gpx-parser', 'bicycle-stat']
REQUIRES = ['geopy', 'gpxpy', 'matplotlib', 'numpy', 'pandas']
# REQUIRES = ['geopy', 'gpxpy', 'matplotlib', 'numpy', 'pandas']
SERVICEDIR = "/lib/systemd/system"
@ -23,5 +23,7 @@ if sys.argv[1] == 'install':
shutil.copyfile("bicycle-stat.service", DAEMON_START_SCRIPT)
os.chmod(DAEMON_START_SCRIPT, stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IROTH)
# setup(name=NAME, version=VERSION, author=AUTHOR, author_email=EMAIL,
# packages=PACKAGES, scripts=SCRIPTS, install_requires=REQUIRES)
setup(name=NAME, version=VERSION, author=AUTHOR, author_email=EMAIL,
packages=PACKAGES, scripts=SCRIPTS, install_requires=REQUIRES)
packages=PACKAGES, scripts=SCRIPTS)