Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
LRSEngineering committed Jan 17, 2018
1 parent b841ad4 commit adc461a
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
2 changes: 1 addition & 1 deletion APScheduler.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Metadata-Version: 1.1
Metadata-Version: 1.0
Name: APScheduler
Version: 3.1.0
Summary: In-process task scheduler with Cron-like capabilities
Expand Down
30 changes: 30 additions & 0 deletions apscheduler.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

# apscheduler.mk
# Makefile to include building sqlobject in a larger top-level project
# Copyright (C) 2018 Long Range Systems, LLC. All rights reserved.

ifndef APSCHEDULER_SRC_DIR
APSCHEDULER_SRC_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
endif

ifndef BUILD_TOOLS_DIR
${error BUILD_TOOLS_DIR not defined! You must specify where build tools reside}
endif

# greenlet package version
APSCHEDULER_PV = 1.4.1

# Build revision
APSCHEDULER_PR = -r1

# Overall build version
APSCHEDULER_BV = $(APSCHEDULER_PV)$(APSCHEDULER_PR)


APSCHEDULER_DOTFILE = $(call python-cross-dotfile,apscheduler,$(APSCHEDULER_BV))

APSCHEDULER_DEPS = $(APSCHEDULER_DOTFILE)

$(APSCHEDULER_DOTFILE): $(BUILD_PYTHON_NATIVE_MODULE_DEPS)
$(call build-python-native-module,$(APSCHEDULER_SRC_DIR))
touch $@

0 comments on commit adc461a

Please sign in to comment.