diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | LICENSE | 2 | ||||
-rw-r--r-- | MANIFEST.in | 3 | ||||
-rwxr-xr-x | setup.py | 19 |
4 files changed, 26 insertions, 1 deletions
@@ -1 +1,4 @@ *.pyc +/build/ +/dist/ +*.egg-info @@ -1,4 +1,4 @@ -Copyright (c) 2009 Laurent Bachelier +Copyright (c) 2009-2013 Laurent Bachelier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..ea7ebbe --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include README LICENSE +include example.py +recursive-include samples * 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', + ], +) |