add setup install dependencies
This commit is contained in:
parent
e2d85e9afe
commit
64ca1d099b
1 changed files with 14 additions and 0 deletions
14
setup.py
Executable file
14
setup.py
Executable file
|
@ -0,0 +1,14 @@
|
|||
from setuptools import setup
|
||||
|
||||
setup(name='workdirfs',
|
||||
version='0.1',
|
||||
description='Workdir Filesystem in Userspace (FUSE)',
|
||||
url='http://github.com/xundeenergie/workdirfs.git',
|
||||
author='Jakobus Schürz',
|
||||
author_email='jakob@schuerz.at',
|
||||
license='MIT',
|
||||
packages=['workdirfs'],
|
||||
install_requires=[
|
||||
'fusepy',
|
||||
],
|
||||
zip_safe=False)
|
Loading…
Reference in a new issue