-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 766 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="hurricane",
version="0.1",
description="Hurricane is a project for easily creating Comet web applications",
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Environment :: Web Environment",
],
keywords="comet,asynchronous,messages,messaging,framework",
author="The Hurricane Development Team",
author_email="floguy+hurricane@gmail.com",
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
url="http://github.com/ericflo/hurricane",
)