-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
36 lines (34 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/python
from setuptools import find_packages, setup
setup(
name="bareos-fuse",
#version="0.3.dev2",
version="0.3",
license="AGPLv3",
author="Joerg Steffens",
author_email="[email protected]",
#packages=find_packages(),
package_dir = {
"bareos.fuse": "bareos/fuse",
"bareos.fuse.node": "bareos/fuse/node",
},
packages=["bareos.fuse", "bareos.fuse.node"],
scripts=["bin/bareos-fuse.py"],
url="https://github.com/bareos/bareos-fuse/",
keywords="bareos fuse filesystem bareosfs",
description="Virtual Filesystem showing Bareos information.",
long_description=open("README.rst").read(),
long_description_content_type='text/x-rst',
install_requires=[
"fuse-python",
"python-bareos",
"python-dateutil",
],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: System :: Archiving :: Backup",
],
)