diff --git a/.travis.yml b/.travis.yml index 8f72f72..41ec12c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ python: - "2.7" - "3.2" - "3.3" + - "3.4" - "pypy" # command to install dependencies install: "pip install -r requirements.txt" diff --git a/setup.py b/setup.py index f6cf8c7..9f2bb2d 100755 --- a/setup.py +++ b/setup.py @@ -1,28 +1,35 @@ -# -*- coding: utf-8 -*- - -from distutils.core import setup - -with open('README.rst') as f: - LONG_DESCRIPTION = f.read() - -setup( - name='semver', - version='2.0.1', - description='Python package to work with Semantic Versioning (http://semver.org/)', - long_description=LONG_DESCRIPTION, - author='Konstantine Rybnikov', - author_email='k-bx@k-bx.com', - url='https://github.com/k-bx/python-semver', - download_url='https://github.com/k-bx/python-semver/downloads', - py_modules=['semver'], - include_package_data=True, - classifiers=[ - 'Environment :: Web Environment', - 'Framework :: Django', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: BSD License', - 'Operating System :: OS Independent', - 'Programming Language :: Python', - 'Topic :: Software Development :: Libraries :: Python Modules', - ], -) +# -*- coding: utf-8 -*- + +from distutils.core import setup + +with open('README.rst') as f: + LONG_DESCRIPTION = f.read() + +setup( + name='semver', + version='2.0.1', + description='Python package to work with Semantic Versioning (http://semver.org/)', + long_description=LONG_DESCRIPTION, + author='Konstantine Rybnikov', + author_email='k-bx@k-bx.com', + url='https://github.com/k-bx/python-semver', + download_url='https://github.com/k-bx/python-semver/downloads', + py_modules=['semver'], + include_package_data=True, + classifiers=[ + 'Environment :: Web Environment', + 'Framework :: Django', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Topic :: Software Development :: Libraries :: Python Modules', + ], +)