2015-04-12 19:25:10 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
2015-05-22 16:59:08 +03:00
|
|
|
with open('README.md') as f:
|
2015-04-12 19:25:10 +00:00
|
|
|
LONG_DESCRIPTION = f.read()
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='semver',
|
2016-01-28 15:23:52 +02:00
|
|
|
version='2.3.0',
|
2015-04-12 19:25:10 +00:00
|
|
|
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',
|
|
|
|
],
|
|
|
|
)
|