|
4 | 4 | import transloadit |
5 | 5 |
|
6 | 6 |
|
7 | | -install_requires = ['requests>=2.18.4', 'six>=1.11.0', 'tuspy>=0.2.3'] |
| 7 | +install_requires = ["requests>=2.18.4", "six>=1.11.0", "tuspy>=0.2.3"] |
8 | 8 | tests_require = [ |
9 | | - 'requests-mock>=1.3.0', 'mock>=2.0.0', 'coverage>=4.2', 'pytest>=4.6', |
10 | | - 'pytest-cov>=2.3.1' |
| 9 | + "requests-mock>=1.3.0", |
| 10 | + "mock>=2.0.0", |
| 11 | + "coverage>=4.2", |
| 12 | + "pytest>=4.6", |
| 13 | + "pytest-cov>=2.3.1", |
11 | 14 | ] |
12 | 15 |
|
13 | 16 | try: |
14 | 17 | import pypandoc |
15 | | - long_description = pypandoc.convert_file('README.md', 'rst').replace("\r", "") |
| 18 | + |
| 19 | + long_description = pypandoc.convert_file("README.md", "rst").replace("\r", "") |
16 | 20 | except (ImportError, OSError): # pypandoc or pandoc is not installed |
17 | | - long_description = '' |
| 21 | + long_description = "" |
18 | 22 |
|
19 | 23 | setup( |
20 | | - name='pytransloadit', |
| 24 | + name="pytransloadit", |
21 | 25 | version=transloadit.__version__, |
22 | | - url='http://github.com/transloadit/python-sdk/', |
23 | | - license='MIT', |
24 | | - author='Ifedapo Olarewaju', |
| 26 | + url="http://github.com/transloadit/python-sdk/", |
| 27 | + license="MIT", |
| 28 | + author="Ifedapo Olarewaju", |
25 | 29 | install_requires=install_requires, |
26 | 30 | tests_require=tests_require, |
27 | 31 | extras_require={ |
28 | | - 'test': tests_require, |
29 | | - 'dev': ['tox>=2.3.1', 'sphinx-autobuild==0.7.1', 'Sphinx==1.7.1'] |
| 32 | + "test": tests_require, |
| 33 | + "dev": ["tox>=2.3.1", "sphinx-autobuild==0.7.1", "Sphinx==1.7.1"], |
30 | 34 | }, |
31 | | - author_email='ifedapoolarewaju@gmail.com', |
32 | | - description='A Python Integration for https://transloadit.com file uploading and encoding service.', |
| 35 | + author_email="ifedapoolarewaju@gmail.com", |
| 36 | + description="A Python Integration for https://transloadit.com file uploading and encoding service.", |
33 | 37 | long_description=long_description, |
34 | | - packages=['transloadit'], |
| 38 | + packages=["transloadit"], |
35 | 39 | include_package_data=True, |
36 | | - platforms='any', |
| 40 | + platforms="any", |
37 | 41 | classifiers=[ |
38 | | - 'Programming Language :: Python', 'Natural Language :: English', |
39 | | - 'Environment :: Web Environment', 'Intended Audience :: Developers', |
40 | | - 'Development Status :: 3 - Alpha', |
41 | | - 'License :: OSI Approved :: MIT License', |
42 | | - 'Operating System :: OS Independent', |
43 | | - 'Topic :: Software Development :: Libraries :: Python Modules', |
44 | | - 'Topic :: Internet :: File Transfer Protocol (FTP)', |
45 | | - 'Topic :: Communications :: File Sharing', |
46 | | - 'Topic :: Multimedia :: Video :: Conversion', |
47 | | - 'Topic :: Multimedia :: Sound/Audio :: Conversion' |
48 | | - ]) |
| 42 | + "Programming Language :: Python", |
| 43 | + "Natural Language :: English", |
| 44 | + "Environment :: Web Environment", |
| 45 | + "Intended Audience :: Developers", |
| 46 | + "Development Status :: 3 - Alpha", |
| 47 | + "License :: OSI Approved :: MIT License", |
| 48 | + "Operating System :: OS Independent", |
| 49 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 50 | + "Topic :: Internet :: File Transfer Protocol (FTP)", |
| 51 | + "Topic :: Communications :: File Sharing", |
| 52 | + "Topic :: Multimedia :: Video :: Conversion", |
| 53 | + "Topic :: Multimedia :: Sound/Audio :: Conversion", |
| 54 | + ], |
| 55 | +) |
0 commit comments