| Total Complexity | 0 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | #!/usr/bin/env python2.7 |
||
| 2 | |||
| 3 | from setuptools import setup, find_packages |
||
| 4 | |||
| 5 | VERSION = '0.2.1' |
||
| 6 | |||
| 7 | from os import path |
||
| 8 | this_directory = path.abspath(path.dirname(__file__)) |
||
| 9 | with open(path.join(this_directory, 'README.md')) as f: |
||
| 10 | long_description = f.read() |
||
| 11 | |||
| 12 | setup(name='b2blaze', |
||
| 13 | version=VERSION, |
||
| 14 | description='Forked from George Sibble\'s B2Blaze (0.1.10). All credits to author. Original package: https://github.com/sibblegp/b2blaze', |
||
| 15 | long_description=long_description, |
||
| 16 | long_description_content_type='text/markdown', |
||
| 17 | packages=find_packages(), |
||
| 18 | author='George Sibble', |
||
| 19 | author_email='[email protected]', |
||
| 20 | python_requires='>=2.7', |
||
| 21 | url='https://github.com/fieldse/b2blaze-fork', |
||
| 22 | install_requires=[ |
||
| 23 | 'requests==2.19.1' |
||
| 24 | ], |
||
| 25 | keywords='backblaze b2 cloud storage', |
||
| 26 | classifiers=[ |
||
| 27 | 'Programming Language :: Python :: 2.7', |
||
| 28 | 'Programming Language :: Python :: 3.6', |
||
| 29 | 'Intended Audience :: Developers', |
||
| 30 | 'Topic :: Software Development :: Libraries', |
||
| 31 | ], |
||
| 32 | license='MIT' |
||
| 33 | ) |
||
| 34 |