|
4 | 4 | import transloadit |
5 | 5 |
|
6 | 6 |
|
7 | | -install_requires = ['requests>=2.11.1,<3', 'six>=1.10.0', 'tuspy>=0.2.2'] |
| 7 | +install_requires = ['requests>=2.18.4', 'six>=1.11.0', 'tuspy>=0.2.3'] |
| 8 | +tests_require = [ |
| 9 | + 'requests-mock>=1.3.0', 'mock>=2.0.0', 'coverage>=4.2', 'pytest>=3.0.3', |
| 10 | + 'pytest-cov>=2.3.1' |
| 11 | +] |
8 | 12 |
|
9 | 13 | try: |
10 | 14 | import pypandoc |
|
19 | 23 | license='MIT', |
20 | 24 | author='Ifedapo Olarewaju', |
21 | 25 | install_requires=install_requires, |
| 26 | + tests_require=tests_require, |
| 27 | + extras_require={ |
| 28 | + 'test': tests_require, |
| 29 | + 'dev': ['tox>=2.3.1', 'sphinx-autobuild==0.7.1', 'Sphinx==1.7.1'] |
| 30 | + }, |
22 | 31 | |
23 | | - description="A Python Integration for https://transloadit.com file uploading and encoding service.", |
| 32 | + description='A Python Integration for https://transloadit.com file uploading and encoding service.', |
24 | 33 | long_description=long_description, |
25 | 34 | packages=['transloadit'], |
26 | 35 | include_package_data=True, |
27 | 36 | platforms='any', |
28 | 37 | classifiers=[ |
29 | | - 'Programming Language :: Python', |
30 | | - 'Natural Language :: English', |
31 | | - 'Environment :: Web Environment', |
32 | | - 'Intended Audience :: Developers', |
| 38 | + 'Programming Language :: Python', 'Natural Language :: English', |
| 39 | + 'Environment :: Web Environment', 'Intended Audience :: Developers', |
33 | 40 | 'Development Status :: 3 - Alpha', |
34 | 41 | 'License :: OSI Approved :: MIT License', |
35 | 42 | 'Operating System :: OS Independent', |
|
38 | 45 | 'Topic :: Communications :: File Sharing', |
39 | 46 | 'Topic :: Multimedia :: Video :: Conversion', |
40 | 47 | 'Topic :: Multimedia :: Sound/Audio :: Conversion' |
41 | | - ] |
42 | | -) |
| 48 | + ]) |
0 commit comments