Setup.py: update trove classifiers, read version from code.

fix_request_path_info
Diederik van der Boor 2013-05-20 17:12:38 +02:00
parent 6a32ffbf98
commit 83238697d2
2 changed files with 29 additions and 4 deletions

View File

@ -11,4 +11,4 @@ Release logic:
6. git commit 6. git commit
7. push to github 7. push to github
""" """
__version__ = "0.4.2.dev0" __version__ = "0.5a1"

31
setup.py 100644 → 100755
View File

@ -1,9 +1,32 @@
#!/usr/bin/env python
from setuptools import setup, find_packages from setuptools import setup, find_packages
from os import path
import codecs
import os
import re
import sys
def read(*parts):
file_path = path.join(path.dirname(__file__), *parts)
return codecs.open(file_path, encoding='utf-8').read()
def find_version(*parts):
version_file = read(*parts)
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_file, re.M)
if version_match:
return str(version_match.group(1))
raise RuntimeError("Unable to find version string.")
setup( setup(
name = 'django_polymorphic', name = 'django_polymorphic',
version ="0.4.2.dev0", # You must ALSO bump polymorphic.__version__ ! version = find_version('polymorphic', '__version__.py'),
license = 'BSD',
description = 'Seamless Polymorphic Inheritance for Django Models', description = 'Seamless Polymorphic Inheritance for Django Models',
long_description = read('README.rst'),
url = 'https://github.com/chrisglass/django_polymorphic', url = 'https://github.com/chrisglass/django_polymorphic',
author = 'Bert Constantin', author = 'Bert Constantin',
@ -23,13 +46,15 @@ setup(
test_suite='runtests', test_suite='runtests',
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django', 'Framework :: Django',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', 'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Libraries :: Python Modules',
] ]
) )