Skip to content

Commit e95eaaa

Browse files
committed
Bump version
1 parent a87387d commit e95eaaa

File tree

2 files changed

+22
-21
lines changed

2 files changed

+22
-21
lines changed

myjdapi/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@
3434
MYJDUnknownException,
3535
)
3636

37-
__version__ = "1.1.4"
37+
__version__ = "1.1.5"

setup.py

+21-20
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,31 @@
66
from setuptools import setup, find_packages
77
from codecs import open
88
from os import path
9+
910
here = path.abspath(path.dirname(__file__))
10-
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
11+
with open(path.join(here, "README.rst"), encoding="utf-8") as f:
1112
long_description = f.read()
1213
setup(
13-
name='myjdapi',
14-
version='1.1.4',
15-
description='Library to use My.Jdownloader API in an easy way.',
14+
name="myjdapi",
15+
version="1.1.5",
16+
description="Library to use My.Jdownloader API in an easy way.",
1617
long_description=long_description,
17-
url='https://github.com/mmarquezs/My.Jdownloader-API-Python-Library/',
18-
author='Marc Marquez Santamaria',
19-
author_email='mmsa1994@gmail.com',
20-
license='MIT',
18+
url="https://github.com/mmarquezs/My.Jdownloader-API-Python-Library/",
19+
author="Marc Marquez Santamaria",
20+
author_email="mmsa1994@gmail.com",
21+
license="MIT",
2122
classifiers=[
22-
'Development Status :: 3 - Alpha',
23-
'Intended Audience :: Developers',
24-
'Topic :: Software Development :: Libraries',
25-
'License :: OSI Approved :: MIT License',
26-
'Programming Language :: Python :: 3',
27-
'Programming Language :: Python :: 3.2',
28-
'Programming Language :: Python :: 3.3',
29-
'Programming Language :: Python :: 3.4',
30-
'Programming Language :: Python :: 3.5',
23+
"Development Status :: 3 - Alpha",
24+
"Intended Audience :: Developers",
25+
"Topic :: Software Development :: Libraries",
26+
"License :: OSI Approved :: MIT License",
27+
"Programming Language :: Python :: 3",
28+
"Programming Language :: Python :: 3.2",
29+
"Programming Language :: Python :: 3.3",
30+
"Programming Language :: Python :: 3.4",
31+
"Programming Language :: Python :: 3.5",
3132
],
32-
keywords='myjdapi jdownloader my.jdownloader api development',
33-
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
34-
install_requires=['requests','pycryptodome'],
33+
keywords="myjdapi jdownloader my.jdownloader api development",
34+
packages=find_packages(exclude=["contrib", "docs", "tests"]),
35+
install_requires=["requests", "pycryptodome"],
3536
)

0 commit comments

Comments
 (0)