diff options
author | Armin Ronacher <armin.ronacher@active-4.com> | 2014-06-30 22:50:56 +0200 |
---|---|---|
committer | Armin Ronacher <armin.ronacher@active-4.com> | 2014-06-30 22:50:56 +0200 |
commit | 1e6456bf54bb37743d22fe564b475f10bc13281e (patch) | |
tree | 3cf0c8cb8dd3688785ff73100f8bd8af98eb3105 /setup.py | |
download | pluginbase-1e6456bf54bb37743d22fe564b475f10bc13281e.tar.gz |
Initial commit.0.1
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..328cce9 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +try: + from setuptools import setup +except ImportError: + from distutils.core import setup + + +setup( + name='pluginbase', + author='Armin Ronacher', + author_email='armin.ronacher@active-4.com', + version='0.1', + url='http://github.com/mitsuhiko/pluginbase', + py_modules=['pluginbase'], + description='A support library for building plugins sytems in Python.', + zip_safe=False, + classifiers=[ + 'License :: OSI Approved :: BSD License', + 'Programming Language :: Python', + 'Programming Language :: Python :: 3', + ], +) |