forked from jasondavies/couchdb-fuse
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (44 loc) · 1.24 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
37
38
39
40
41
42
43
44
45
from setuptools import setup
setup(
name='cozy-fuse',
version='0.1.0',
description='FUSE implementation for Cozy Files',
author='Cozy Cloud',
author_email='contact@cozycloud.cc',
url='http://cozy.io/',
license='LGPL',
install_requires=[
"fuse-python>=0.2",
"CouchDB>=0.9",
"requests>=2.0.1",
"pyyaml",
"lockfile",
"python-daemon"
],
setup_requires=[],
tests_require=[
],
packages=['cozyfuse'],
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'cozy-fuse = cozyfuse.__main__:main',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: LGPL',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2.8',
'Programming Language :: Python :: 2.9',
'Topic :: System :: Software Distribution',
'Topic :: System :: Systems Administration',
],
)