forked from inducer/relate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (20 loc) · 788 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/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="[email protected]",
license="MIT",
packages=find_packages(exclude=['tests']),
install_requires=[
"colorama",
])