aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/setup.py b/setup.py
index 879eb7f..62aec94 100755
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,5 @@
1#!/usr/bin/env python 1#!/usr/bin/env python
2 2
3import sys
4import itertools 3import itertools
5from setuptools.command.test import test 4from setuptools.command.test import test
6from setuptools import setup, find_packages 5from setuptools import setup, find_packages
@@ -63,11 +62,11 @@ else:
63 62
64setup( 63setup(
65 name="pydora", 64 name="pydora",
66 version="1.13.0", 65 version="2.0.0",
67 description="Python wrapper for Pandora API", 66 description="Python wrapper for Pandora API",
68 long_description=open("README.rst", "r").read(), 67 long_description=open("README.rst", "r").read(),
69 author="Mike Crute", 68 author="Mike Crute",
70 author_email="mcrute@gmail.com", 69 author_email="mike@crute.us",
71 url="https://github.com/mcrute/pydora", 70 url="https://github.com/mcrute/pydora",
72 test_suite="tests.discover_suite", 71 test_suite="tests.discover_suite",
73 packages=find_packages(exclude=["tests", "tests.*"]), 72 packages=find_packages(exclude=["tests", "tests.*"]),
@@ -87,8 +86,6 @@ setup(
87 "Intended Audience :: End Users/Desktop", 86 "Intended Audience :: End Users/Desktop",
88 "License :: OSI Approved :: MIT License", 87 "License :: OSI Approved :: MIT License",
89 "Operating System :: OS Independent", 88 "Operating System :: OS Independent",
90 "Programming Language :: Python :: 2.7",
91 "Programming Language :: Python :: 3.4",
92 "Programming Language :: Python :: 3.5", 89 "Programming Language :: Python :: 3.5",
93 "Programming Language :: Python :: 3.6", 90 "Programming Language :: Python :: 3.6",
94 "Programming Language :: Python :: 3.7", 91 "Programming Language :: Python :: 3.7",