#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages # This script (for now) is only intended to install the 'relate' content helper # script. relate-validate. Its use is not needed for (and unrelated to) # deploying RELATE as a web service. # Use 'pip install -r requirements.txt' first to install prerequisites. setup(name="relate-courseware", version="2016.1", description="RELATE courseware", long_description=open("README.rst", "rt").read(), scripts=["bin/relate"], author="Andreas Kloeckner", url="https://github.com/inducer/relate", author_email="inform@tiker.net", license="MIT", packages=find_packages(), install_requires=[ "colorama", ])