Explicitly show Python 3 support
This commit is contained in:
@@ -4,6 +4,7 @@ python:
|
||||
- "2.7"
|
||||
- "3.2"
|
||||
- "3.3"
|
||||
- "3.4"
|
||||
- "pypy"
|
||||
# command to install dependencies
|
||||
install: "pip install -r requirements.txt"
|
||||
|
||||
63
setup.py
63
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',
|
||||
],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user