Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarquezs committed Jul 2, 2022
1 parent a87387d commit e95eaaa
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 21 deletions.
2 changes: 1 addition & 1 deletion myjdapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@
MYJDUnknownException,
)

__version__ = "1.1.4"
__version__ = "1.1.5"
41 changes: 21 additions & 20 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,31 @@
from setuptools import setup, find_packages
from codecs import open
from os import path

here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
with open(path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
setup(
name='myjdapi',
version='1.1.4',
description='Library to use My.Jdownloader API in an easy way.',
name="myjdapi",
version="1.1.5",
description="Library to use My.Jdownloader API in an easy way.",
long_description=long_description,
url='https://github.com/mmarquezs/My.Jdownloader-API-Python-Library/',
author='Marc Marquez Santamaria',
author_email='mmsa1994@gmail.com',
license='MIT',
url="https://github.com/mmarquezs/My.Jdownloader-API-Python-Library/",
author="Marc Marquez Santamaria",
author_email="mmsa1994@gmail.com",
license="MIT",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
keywords='myjdapi jdownloader my.jdownloader api development',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['requests','pycryptodome'],
keywords="myjdapi jdownloader my.jdownloader api development",
packages=find_packages(exclude=["contrib", "docs", "tests"]),
install_requires=["requests", "pycryptodome"],
)

0 comments on commit e95eaaa

Please sign in to comment.