forked from fusepy/fusepy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·48 lines (40 loc) · 1.31 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
46
47
48
#!/usr/bin/env python
from __future__ import with_statement
from setuptools import setup
try:
from lib2to3 import refactor
fixers = set(refactor.get_fixers_from_package('lib2to3.fixes'))
except ImportError:
fixers = set()
with open('README') as readme:
documentation = readme.read()
setup(
name = 'fusepy',
version = '2.0.2',
description = 'Simple ctypes bindings for FUSE',
long_description = documentation,
author = 'Giorgos Verigakis',
author_email = '[email protected]',
maintainer = 'Terence Honles',
maintainer_email = '[email protected]',
license = 'ISC',
py_modules=['fuse'],
url = 'http://github.com/terencehonles/fusepy',
use_2to3 = True,
# only use the following fixers (everything else is already compatible)
use_2to3_exclude_fixers = fixers - set([
'lib2to3.fixes.fix_except',
'lib2to3.fixes.fix_future',
'lib2to3.fixes.fix_numliterals',
]),
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: System :: Filesystems',
]
)