Skip to content

Commit

Permalink
add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
astex committed Nov 21, 2014
1 parent 94794e6 commit 8812d48
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions setup.py
@@ -0,0 +1,28 @@
from distutils.core import setup

setup(
name="sequential",
packages=["sequential"],
version="1.0.0",
description="Sequential wrappers for python functions.",
author="Phil Condreay",
author_email="0astex@gmail.com",
url="https://github.com/astex/sequential",
keywords=["functions", "decorators", "multithreading", "convenience"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
],
long_description="""\
Sequential
-----
Sequential wrappers for python functions allowing you to easily define order of
execution independent of content of the function.
"""
)

0 comments on commit 8812d48

Please sign in to comment.