|
6 | 6 | from setuptools import setup, find_packages
|
7 | 7 | from codecs import open
|
8 | 8 | from os import path
|
| 9 | + |
9 | 10 | 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: |
11 | 12 | long_description = f.read()
|
12 | 13 | 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.", |
16 | 17 | 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", |
21 | 22 | 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", |
31 | 32 | ],
|
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"], |
35 | 36 | )
|
0 commit comments