forked from inducer/relate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (41 loc) · 1.31 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/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. Its use is not needed for (and unrelated to) deploying RELATE as a
# web service.
# Use 'pip install -r requirements.txt' to install prerequisites for RELATE as
# a web service.
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(exclude=['tests']),
install_requires=[
"django>=2.1.11",
"django-crispy-forms>=1.5.1",
"colorama",
"markdown<3.0",
"dulwich",
"pyyaml",
"nbconvert>=5.2.1",
# Try to avoid https://github.com/Julian/jsonschema/issues/449
"attrs>=19",
"pymbolic",
"sympy",
],
package_data={
"relate": [
"templates/*.html",
],
"course": [
"templates/course/*.html",
"templates/course/jinja2/*.tpl",
],
},
)