diff options
author | Laurent Bachelier <laurent@bachelier.name> | 2013-03-03 19:24:48 +0100 |
---|---|---|
committer | Laurent Bachelier <laurent@bachelier.name> | 2013-03-03 19:24:48 +0100 |
commit | 57c174a3af13880e2b475c4fd977468d4f46f3d6 (patch) | |
tree | 9619c6b2baeb318deaabb7411e0d49375c3d9a89 /setup.py | |
parent | Avoid standard names (diff) | |
download | confman-57c174a3af13880e2b475c4fd977468d4f46f3d6.tar.xz |
Packaging
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..845c26e --- /dev/null +++ b/setup.py @@ -0,0 +1,19 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from setuptools import setup + +setup( + name='confman', + version='0.0', + description='Lazy, rootless, yet powerful config file management mostly using symlinks', + long_description=open('README').read(), + author='Laurent Bachelier', + author_email='laurent@bachelier.name', + url='http://git.p.engu.in/laurentb/confman/', + py_modules=['confman'], + classifiers=[ + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 2', + ], +) |