|
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='mmsa1994@gmail.com', |
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='mmsa1994@gmail.com', |
| 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