From 8812d487c33a8f0f1c96336cd27ad2fa942175f6 Mon Sep 17 00:00:00 2001 From: astex <0astex@gmail.com> Date: Fri, 21 Nov 2014 15:39:45 -0500 Subject: [PATCH] add setup.py --- setup.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..d205d2e --- /dev/null +++ b/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. +""" +)