forked from dpnova/eyeofthestorm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 834 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 834 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
from setuptools import find_packages, setup
import os.path
classifiers = [
"Development Status :: 1 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
setup(
name="eyeofthestorm",
version="0.2",
packages=find_packages(),
install_requires=["Twisted >= 12.1.0"],
author="David Novakovic",
author_email="dpn@dpn.name",
classifiers=classifiers,
description="A REST library for the Cyclone framework.",
url="http://github.com/dpnova/eyeofthestorm",
long_description=file('README.md').read()
)