Skip to content

Commit 936ddc3

Browse files
author
Robert Chu
committed
Removes old setup.py code.
1 parent e7fe853 commit 936ddc3

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
import os
22
from distutils.core import setup
33

4-
package_path = os.path.dirname(os.path.realpath(__file__))
5-
with open(os.path.join(package_path, 'VERSION')) as version_file:
6-
version = version_file.read().strip()
7-
84
setup(
95
name="script_runner",
106
packages=["script_runner"],
117
scripts=["script_runner/main.py"],
12-
version=os.environ["SCRIPT_RUNNER_VERSION"],
8+
version=os.environ.get("SCRIPT_RUNNER_VERSION", "latest"),
139
license="MIT",
1410
description="Provides an API server + celery worker module for running arbitrary scripts.",
1511
author="Robert Chu",

0 commit comments

Comments
 (0)