You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
376 B
14 lines
376 B
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='permwatcher',
|
|
version='0.1.1',
|
|
description='Linux Filesystem Permissions Watcher',
|
|
author='Johann Schmitz',
|
|
author_email='johann@j-schmitz.net',
|
|
url='https://repos.j-schmitz.net/gitweb/?p=permwatcher.git;a=summary',
|
|
packages=['permwatcher',],
|
|
package_dir={'': 'src'},
|
|
)
|