Skip to content

Commit b8add78

Browse files
committed
Don't Ignore xattr.egg-info Folder. Upload xattr.egg-info Folder
1 parent 8753c41 commit b8add78

File tree

7 files changed

+60
-1
lines changed

7 files changed

+60
-1
lines changed

Modules/xattr-0.6.4/xattr-0.6.4/.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
/xattr.egg-info
1+
# DARLING - Don't ignore `xattr.egg-info` folder
2+
# /xattr.egg-info
3+
## DARLING
24
/build
35
/dist
46
*.pyc
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Metadata-Version: 1.0
2+
Name: xattr
3+
Version: 0.6.4
4+
Summary: Python wrapper for extended filesystem attributes
5+
Home-page: http://github.com/xattr/xattr
6+
Author: Bob Ippolito
7+
Author-email: [email protected]
8+
License: MIT License
9+
Description:
10+
Extended attributes extend the basic attributes of files and directories
11+
in the file system. They are stored as name:data pairs associated with
12+
file system objects (files, directories, symlinks, etc).
13+
14+
Extended attributes are currently only available on Darwin 8.0+ (Mac OS X 10.4)
15+
and Linux 2.6+. Experimental support is included for Solaris and FreeBSD.
16+
17+
Platform: MacOS X
18+
Platform: Linux
19+
Platform: FreeBSD
20+
Platform: Solaris
21+
Classifier: Environment :: Console
22+
Classifier: Intended Audience :: Developers
23+
Classifier: License :: OSI Approved :: MIT License
24+
Classifier: Natural Language :: English
25+
Classifier: Operating System :: MacOS :: MacOS X
26+
Classifier: Operating System :: POSIX :: Linux
27+
Classifier: Operating System :: POSIX :: BSD :: FreeBSD
28+
Classifier: Programming Language :: Python
29+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.gitignore
2+
CHANGES.txt
3+
INSTALLING.txt
4+
LICENSE.txt
5+
README.txt
6+
TODO.txt
7+
ez_setup.py
8+
setup.cfg
9+
setup.py
10+
_build/_make_constants.py
11+
xattr/__init__.py
12+
xattr/_xattr.c
13+
xattr/constants.py
14+
xattr/tool.py
15+
xattr.egg-info/PKG-INFO
16+
xattr.egg-info/SOURCES.txt
17+
xattr.egg-info/dependency_links.txt
18+
xattr.egg-info/entry_points.txt
19+
xattr.egg-info/not-zip-safe
20+
xattr.egg-info/top_level.txt
21+
xattr/tests/__init__.py
22+
xattr/tests/test_xattr.py
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[console_scripts]
2+
xattr = xattr.tool:main
3+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
xattr

0 commit comments

Comments
 (0)