Fix: remove install_requires
because it's unclear
This commit is contained in:
parent
d65eeaf0fd
commit
9761814f6f
6
setup.py
6
setup.py
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user