-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fddc67f
commit f7727c7
Showing
5 changed files
with
40 additions
and
18 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
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,19 +1,24 @@ | ||
from distutils.core import setup | ||
from distutils.sysconfig import get_python_lib | ||
import os | ||
from imageresolver import __version__ | ||
import sys | ||
|
||
# attempt to pull version | ||
sys.path.append('./imageresolver') | ||
from version import __version__ | ||
|
||
setup( | ||
name='ImageResolver', | ||
version=__version__, | ||
author='Chris Brown', | ||
author_email='[email protected]', | ||
packages=['imageresolver','imageresolver.test','imageresolver.abpy'], | ||
packages=['imageresolver','imageresolver.abpy'], | ||
data_files=[(os.path.join( get_python_lib(),'imageresolver','data'),[ os.path.join('imageresolver','data','whitelist.txt') , os.path.join('imageresolver','data','blacklist.txt')])], | ||
scripts=['bin/resolveimg.py'], | ||
url='https://github.com/chrisbrownnwyc/ImageResolverPython', | ||
url='https://github.com/constituentvoice/ImageResolverPython', | ||
license='BSD', | ||
description="Find the most significant image in an article.", | ||
long_description=open('README.rst').read(), | ||
install_requires=[ "requests >= 1.0.0","beautifulsoup4" ], | ||
test_suite='tests' | ||
) |
File renamed without changes.
File renamed without changes.