diff options
| author | Guillaume Horel <guillaume.horel@gmail.com> | 2012-01-18 12:27:37 -0500 |
|---|---|---|
| committer | Guillaume Horel <guillaume.horel@gmail.com> | 2012-01-18 12:27:37 -0500 |
| commit | f70165ef6229a92bf8cfa6f16eff980a4a7491fe (patch) | |
| tree | e2954759f71c0b4c482334ba9b278a4224e97197 /setup.py | |
| parent | 0ce9f4fb84693f34113630c59610b47a082ae71a (diff) | |
| download | alias-f70165ef6229a92bf8cfa6f16eff980a4a7491fe.tar.gz | |
Added setup.py and big reorg of the source tree
this should fix tickets #10 and #11
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..9bc77a9 --- /dev/null +++ b/setup.py @@ -0,0 +1,9 @@ +from distutils.core import setup +setup(name='alias', + version='0.1', + packages=['alias_server'], + scripts=['alias_server/scripts/server'], + data_files=[('/etc/rc.d/',['misc/alias']), + ('/etc/alias/',['misc/config.ini.sample']) + ] + ) |
