forked from brainysmurf/xattr3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (57 loc) · 1.76 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
62
63
64
#!/usr/bin/env python3
import sys
import time
sys.stderr.write("""\
[WARNING] This code is deprecated, you should use
https://github.com/xattr/xattr as it now supports both Python 2.6+ and
Python 3.3+.
""")
sys.stderr.flush()
time.sleep(5)
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, Extension
VERSION = '0.6.1'
DESCRIPTION = "Python wrapper for extended filesystem attributes"
LONG_DESCRIPTION = """
Extended attributes extend the basic attributes of files and directories
in the file system. They are stored as name:data pairs associated with
file system objects (files, directories, symlinks, etc).
Extended attributes are currently only available on Darwin 8.0+ (Mac OS X 10.4)
and Linux 2.6+. Experimental support is included for Solaris and FreeBSD.
"""
CLASSIFIERS = [_f for _f in list(map(str.strip,
"""
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
Operating System :: POSIX :: BSD :: FreeBSD
Programming Language :: Python
Topic :: Software Development :: Libraries :: Python Modules
""".splitlines())) if _f]
setup(
name="xattr",
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
author="Bob Ippolito",
author_email="[email protected]",
url="http://undefined.org/python/#xattr",
license="MIT License",
packages=['xattr'],
platforms=['MacOS X', 'Linux', 'FreeBSD'],
ext_modules=[
Extension("xattr._xattr", ["xattr/_xattr.c"]),
],
entry_points={
'console_scripts': [
"xattr = xattr.tool:main",
],
},
test_suite="xattr.tests.all_tests_suite",
zip_safe=False,
)