29 lines
921 B
Python
Raw Normal View History

2012-05-09 18:20:03 +03:00
# -*- coding: utf-8 -*-
from distutils.core import setup
2012-04-27 22:56:29 +01:00
2012-05-09 17:45:16 +03:00
with open('README.rst') as f:
LONG_DESCRIPTION = f.read()
2012-04-27 22:56:29 +01:00
setup(
name='semver',
2014-09-24 16:24:18 +03:00
version='2.0.1',
2012-04-27 22:56:29 +01:00
description='Python package to work with Semantic Versioning (http://semver.org/)',
2012-05-09 17:45:16 +03:00
long_description=LONG_DESCRIPTION,
2012-04-27 22:56:29 +01:00
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',
2012-05-09 17:45:16 +03:00
py_modules=['semver'],
2012-04-27 22:56:29 +01:00
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',
],
2012-05-01 16:41:06 +01:00
)