-
Notifications
You must be signed in to change notification settings - Fork 70
/
setup.py
51 lines (47 loc) · 1.09 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
49
50
51
#!/bin/env python
# -*- coding: utf8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
version = "0.5.0"
setup(
name="hflossk",
version=version,
description="HFOSS course materials via flask",
classifiers=[
"Intended Audience :: Education",
"Topic :: Education :: Computer Aided Instruction (CAI)",
],
keywords="",
author="Remy DeCausemaker",
author_email="[email protected]",
url="http://fossrit.github.io/hflossk",
license="GPLv3+",
packages=find_packages(
),
include_package_data=True,
zip_safe=False,
install_requires=[
"Flask",
"mako",
"flask-mako",
"feedparser",
"pyyaml",
"frozen-flask",
"tornado"
],
tests_require=[
'tox',
'nose',
'validator.py',
'pep8',
],
#TODO: Deal with entry_points
#entry_points="""
#[console_scripts]
#pythong = pythong.util:parse_args
#"""
)