-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 783 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(name="flowser",
version="0.1.1",
description="High-level interface for Amazon Simple Workflow",
author="Simon Pantzare",
author_email="simon+flowser@pewpewlabs.com",
url="https://github.com/pilt/flowser/",
packages=["flowser"],
license="MIT",
platforms="Posix; MacOS X; Windows",
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Internet",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
],
install_requires=[
'boto>=2.4.1',
])