Explicitly show Python 3 support

This commit is contained in:
Carles Barrobés
2015-04-12 19:25:10 +00:00
parent 26850617f9
commit e85cd265cb
2 changed files with 36 additions and 28 deletions

View File

@@ -4,6 +4,7 @@ python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
# command to install dependencies
install: "pip install -r requirements.txt"

View File

@@ -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',
],
)