Skip to content

Commit

Permalink
updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnekaunisto committed Mar 16, 2019
1 parent f5e0c1a commit ffc51c0
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
#credit to moviepy
import sys
from codecs import open

from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand


MAJOR = 0
MINOR = 0
MICRO = 4
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)


class PyTest(TestCommand):
Expand Down Expand Up @@ -60,17 +64,16 @@ def run_tests(self):
'coveralls>=1.1,<2.0'
]

with open("README.rst", "r") as fh:
with open('README.rst', 'r', 'utf-8') as fh:
long_description = fh.read()

setup(
name="simple-youtube-api",
version="0.0.3",
version=VERSION,
author="Jonne Kaunisto",
author_email="jonneka@gmail.com",
description="A python YouTube API wrapper",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jonnekaunisto/simple-youtube-api",
license='MIT License',
keywords="youtube",
Expand Down

0 comments on commit ffc51c0

Please sign in to comment.