Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sheppard committed Aug 23, 2016
1 parent 8fa8e19 commit ffabed9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Enhanced support for [natural keys] in Django and [Django REST Framework]. Extr

[![Travis Build Status](https://img.shields.io/travis/wq/django-natural-keys/master.svg)](https://travis-ci.org/wq/django-natural-keys)
[![Python Support](https://img.shields.io/pypi/pyversions/natural-keys.svg)](https://pypi.python.org/pypi/natural-keys)
[![Django Support](https://img.shields.io/badge/Django-1.8%2C%201.9-blue.svg)](https://pypi.python.org/pypi/natural-keys)
[![Django Support](https://img.shields.io/badge/Django-1.8%2C%201.9%2C%201.10-blue.svg)](https://pypi.python.org/pypi/natural-keys)


## Usage
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import os
import sys
from setuptools import setup, find_packages
from setuptools import setup

LONG_DESCRIPTION = """
Enhanced support for natural keys in Django and Django REST Framework
Expand Down Expand Up @@ -34,7 +33,7 @@ def parse_markdown_readme():

setup(
name='natural-keys',
version='0.1.1-dev',
version='1.0.0',
author='S. Andrew Sheppard',
author_email='[email protected]',
url='https://github.com/wq/django-natural-keys',
Expand All @@ -43,18 +42,19 @@ def parse_markdown_readme():
description=LONG_DESCRIPTION.strip(),
long_description=parse_markdown_readme(),
install_requires=[
'html-json-forms>=0.1.1',
'html-json-forms>=1.0.0',
],
classifiers=[
'Framework :: Django',
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Database',
],
test_suite='tests',
Expand Down

0 comments on commit ffabed9

Please sign in to comment.