From 8f4aef7eaf1cbde98b0de2a490095eddf87c1817 Mon Sep 17 00:00:00 2001 From: nnsnodnb Date: Thu, 17 May 2018 23:35:02 +0900 Subject: [PATCH] Update 1.0.1 --- setup.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 4c3780d..9259517 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,9 @@ # codeing: utf-8 from setuptools import setup, find_packages -import sys NAME = 'django-ios-storekit' -VERSION = '1.0.0' +VERSION = '1.0.1' def read(filename): @@ -26,7 +25,7 @@ def readlist(filename): version=VERSION, description='A Django plugin for iOS In-App Purchases.', long_description=read('README.rst'), - classifiers= [ + classifiers=[ 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', @@ -38,7 +37,6 @@ def readlist(filename): 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries :: Application Frameworks', 'Topic :: Software Development :: Libraries :: Python Modules' @@ -63,4 +61,3 @@ def readlist(filename): test_suite='runtests.run_tests', tests_require=readlist('requirements-test.txt') ) -