Skip to content

Commit

Permalink
Versoin bump to 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
balloob committed Sep 10, 2019
1 parent 8fe6a86 commit e9a92e5
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions setup.py
@@ -1,29 +1,29 @@
from setuptools import setup, find_packages


long_description = open('README.rst').read()
long_description = open("README.rst").read()

setup(
name='PyChromecast',
version='3.2.3',
license='MIT',
url='https://github.com/balloob/pychromecast',
author='Paulus Schoutsen',
author_email='paulus@paulusschoutsen.nl',
description='Python module to talk to Google Chromecast.',
name="PyChromecast",
version="4.0.0",
license="MIT",
url="https://github.com/balloob/pychromecast",
author="Paulus Schoutsen",
author_email="paulus@paulusschoutsen.nl",
description="Python module to talk to Google Chromecast.",
long_description=long_description,
packages=find_packages(),
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=list(val.strip() for val in open('requirements.txt')),
platforms="any",
install_requires=list(val.strip() for val in open("requirements.txt")),
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'
]
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)

0 comments on commit e9a92e5

Please sign in to comment.