-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (23 loc) · 789 Bytes
/
setup.py
File metadata and controls
30 lines (23 loc) · 789 Bytes
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
#
# setup.py
#
import sys
from setuptools import setup, find_packages
install_requires = ['termcolor', 'mako', 'pyjade']
if sys.version_info < (3, 4):
install_requires.append('asyncio==0.2.1')
setup(
name="growler",
version="0.0.1",
author="Andrew Kubera",
author_email="andrew.kubera@gmail.com",
description = 'A micro web-framework using asyncio coroutines.',
long_description = """A web framework covering the asyncio module (PEP 3156), intending to be similar to the nodejs 'Express' module.""",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
],
install_requires = install_requires,
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
)