-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsetup.py
40 lines (36 loc) · 890 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/env python
# -*- coding: utf8 -*-
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
version = "0.1.0"
setup(
name="gdd2",
version=version,
description="RIT GDD2 course materials via flask",
classifiers=[
"Intended Audience :: Education",
"Topic :: Education :: Computer Aided Instruction (CAI)",
],
keywords="",
author="Remy DeCausemaker",
author_email="[email protected]",
url="http://gdd2-magicrit.rhcloud.com",
license="GPLv3+",
packages=find_packages(
),
include_package_data=True,
zip_safe=False,
install_requires=[
"flask",
"mako",
"flask-mako",
"feedparser",
"pyyaml",
],
#TODO: Deal with entry_points
#entry_points="""
#[console_scripts]
#pythong = pythong.util:parse_args
#"""
)