From b2bfcc08e356e7ae846d3677b5930ed29d186fab Mon Sep 17 00:00:00 2001 From: jondeaton Date: Sun, 23 Jul 2017 14:35:20 -0700 Subject: [PATCH] Added setup file --- setup.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 setup.py diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..45b1a43 --- /dev/null +++ b/setup.py @@ -0,0 +1,12 @@ +#!/usr/bin/env python2.7 + +from setuptools import setup + +setup( + name='auto-selfcontrol', + version='1.0', + description='Small utility to schedule start and stop times of SelfControl', + url='github.com/andreasgrill/auto-selfcontrol', + long_description=open('README.md').read(), + install_requires=["pyobjc", "pyobjc-core"] +) \ No newline at end of file