forked from ahupp/python-magic
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from spencer-hanson/master
ManyLinux Binary Support
- Loading branch information
Showing
5 changed files
with
32 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
deb_dist | ||
python_magic.egg-info | ||
*.egg-info | ||
build/* | ||
dist/* | ||
.python-version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,12 @@ | |
|
||
setup(name='python-magic-bin', | ||
description='File type identification using libmagic binary package', | ||
author='Julian David Rath', | ||
author_email='[email protected]', | ||
author='Adam Hupp, Julian David Rath, Spencer Hanson', | ||
author_email='[email protected], julian.rath@gmail.com, spencer.hanson@swimlane.com', | ||
url="http://github.com/julian-r/python-magic", | ||
version='0.4.13', | ||
version='0.4.14', | ||
package_data={ | ||
'magic': ['libmagic/*.dll', 'libmagic/*.dylib', 'libmagic/*.mgc'], | ||
'magic': ['libmagic/*.dll', 'libmagic/*.dylib', 'libmagic/*.mgc', 'libmagic/*.so*', 'libmagic/*.la'] | ||
}, | ||
zip_safe=False, | ||
packages=['magic'], | ||
|
@@ -28,4 +28,4 @@ | |
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 3', | ||
], | ||
) | ||
) |