Skip to content

Commit 740fe24

Browse files
committed
Updated version
1 parent be67452 commit 740fe24

File tree

2 files changed

+38
-38
lines changed

2 files changed

+38
-38
lines changed

myjdapi/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
from .myjdapi import Myjdapi
2-
__version__ = '1.0.3.dev1'
1+
from .myjdapi import Myjdapi
2+
__version__ = '1.0.6'

setup.py

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
1-
"""A setuptools based setup module.
2-
See:
3-
https://packaging.python.org/en/latest/distributing.html
4-
https://github.com/pypa/sampleproject
5-
"""
6-
from setuptools import setup, find_packages
7-
from codecs import open
8-
from os import path
9-
here = path.abspath(path.dirname(__file__))
10-
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
11-
long_description = f.read()
12-
setup(
13-
name='myjdapi',
14-
version='1.0.3.dev1',
15-
description='Library to use My.Jdownloader API in an easy way.',
16-
long_description=long_description,
17-
url='https://github.com/mmarquezs/My.Jdownloader-API-Python-Library/',
18-
author='Marc Marquez Santamaria',
19-
author_email='[email protected]',
20-
license='MIT',
21-
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',
31-
],
32-
keywords='myjdapi jdownloader my.jdownloader api development',
33-
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
34-
# py_modules=["libgenapi"],
35-
install_requires=['requests','pycryptodome'],
36-
)
1+
"""A setuptools based setup module.
2+
See:
3+
https://packaging.python.org/en/latest/distributing.html
4+
https://github.com/pypa/sampleproject
5+
"""
6+
from setuptools import setup, find_packages
7+
from codecs import open
8+
from os import path
9+
here = path.abspath(path.dirname(__file__))
10+
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
11+
long_description = f.read()
12+
setup(
13+
name='myjdapi',
14+
version='1.0.6',
15+
description='Library to use My.Jdownloader API in an easy way.',
16+
long_description=long_description,
17+
url='https://github.com/mmarquezs/My.Jdownloader-API-Python-Library/',
18+
author='Marc Marquez Santamaria',
19+
author_email='[email protected]',
20+
license='MIT',
21+
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',
31+
],
32+
keywords='myjdapi jdownloader my.jdownloader api development',
33+
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
34+
# py_modules=["libgenapi"],
35+
install_requires=['requests','pycryptodome'],
36+
)

0 commit comments

Comments
 (0)