77# License, v. 2.0. If a copy of the MPL was not distributed with this
88# file, You can obtain one at http://mozilla.org/MPL/2.0/.
99#
10- from __future__ import (
11- absolute_import , division , print_function , unicode_literals
12- )
10+ from __future__ import absolute_import , division , print_function
1311
1412import os
1513
@@ -26,10 +24,8 @@ def parse_requirements(filepath):
2624
2725setup (
2826 name = 'basest' ,
29- version = '0.7.2' ,
30- description = (
31- 'Arbitrary base binary-to-text encoder (any base to any base)'
32- ),
27+ version = '0.7.3' ,
28+ description = 'Arbitrary base binary-to-text encoder (any base to any base)' ,
3329 long_description = open (
3430 os .path .join (os .path .dirname (__file__ ), 'README.md' )
3531 ).read (),
@@ -46,9 +42,11 @@ def parse_requirements(filepath):
4642 'Intended Audience :: System Administrators' ,
4743 'Intended Audience :: Telecommunications Industry' ,
4844 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)' ,
45+ 'Operating System :: OS Independent' ,
46+ 'Programming Language :: Python' ,
47+ 'Programming Language :: Python :: 2' ,
4948 'Programming Language :: Python :: 2.7' ,
50- 'Programming Language :: Python :: 3.3' ,
51- 'Programming Language :: Python :: 3.4' ,
49+ 'Programming Language :: Python :: 3' ,
5250 'Programming Language :: Python :: 3.5' ,
5351 'Programming Language :: Python :: 3.6' ,
5452 'Topic :: Communications' ,
@@ -60,11 +58,9 @@ def parse_requirements(filepath):
6058 'Topic :: Utilities' ,
6159 ],
6260 keywords = 'number base encoder decoder conversion encoding decoding' ,
63- packages = find_packages (),
64- install_requires = parse_requirements ('python_requirements/base.txt' ),
65- extras_require = {
66- 'test' : parse_requirements ('python_requirements/test.txt' ),
67- },
61+ packages = find_packages (exclude = ['tests' ]),
62+ python_requires = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*' ,
63+ install_requires = [],
6864 package_data = {
6965 '' : ['README.md' , 'LICENSE' ],
7066 },
0 commit comments