diff --git a/reqs.txt b/reqs.txt new file mode 100644 index 0000000..d55dfac --- /dev/null +++ b/reqs.txt @@ -0,0 +1 @@ +clint \ No newline at end of file diff --git a/setup.py b/setup.py index 6f5f17a..d5bedab 100644 --- a/setup.py +++ b/setup.py @@ -11,8 +11,8 @@ from distutils.core import setup if sys.argv[-1] == "publish": os.system('python setup.py sdist upload') sys.exit() - -required = ['github2'] + +required = ['github2', 'clint'] setup( @@ -42,5 +42,5 @@ setup( 'console_scripts': [ 'ghsync = ghsync.core:run', ], - } + } )