-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·61 lines (51 loc) · 1.88 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
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
from setuptools import setup, find_packages
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 = 'xzip',
version = '0.10',
packages = find_packages(),
install_requires = ['fusepy>=1.1'],
author = 'Terence Honles',
author_email = '[email protected]',
description = 'E[x]ploded zip file system in FUSE',
long_description = documentation,
license = 'PSF',
keywords = 'FS FileSystem File System Zip Deduplication',
url = 'https://github.com/terencehonles/xzip',
entry_points = {
'console_scripts': [
'zipexplode = xzip.explode:main',
'zipanaylze = xzip.anaylze:main',
'mount.xzip = xzip.fs:main',
],
},
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',
'lib2to3.fixes.fix_reduce',
]),
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: System :: Filesystems',
]
)