Skip to content

Commit

Permalink
[requires.io] dependency update
Browse files Browse the repository at this point in the history
  • Loading branch information
requires committed Sep 24, 2014
1 parent 96c8ee3 commit 7ff67f5
Showing 1 changed file with 23 additions and 8 deletions.
31 changes: 23 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,43 +12,58 @@ def finalize_options(self):
self.test_suite = True

def run_tests(self):
#import here, cause outside the eggs aren't loaded
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)


dirname = os.path.dirname(__file__)

long_description = (
open(os.path.join(dirname, 'README.rst')).read() + '\n' +
open(os.path.join(dirname, 'CHANGES.rst')).read()

def read_file(f_name):
with open(f_name) as f:
return f.read()


long_description = '\n'.join(
[
read_file(os.path.join(dirname, 'README.rst')),
read_file(os.path.join(dirname, 'CHANGES.rst')),
]
)


setup(
name='google-ngram-downloader',
version='3.1.1',
version='4.0.0',
description='The streaming access to the Google ngram data.',
long_description=long_description,
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Utilities',
'Topic :: Text Processing :: Linguistic',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
keywords='',
author='Dmitrijs Milajevs',
author_email='dimazest@gmail.com',
url='https://github.com/dimazest/google-ngram-downloader',
license='MIT license',
license='MIT License',
packages=find_packages(exclude=['ez_setup', 'examples', 'test']),
include_package_data=True,
zip_safe=False,
Expand Down

0 comments on commit 7ff67f5

Please sign in to comment.