|
3 | 3 | with open('README.md') as readme_file: |
4 | 4 | readme = readme_file.read() |
5 | 5 |
|
6 | | -requirements = ['jsonschema[format_nongpl]==3.2.0', 'pyyaml==5.1.2', 'requests>=2.18', 'future_fstrings'] |
| 6 | +requirements = ['jsonschema[format_nongpl]==3.2.0', 'pyyaml==5.1.2', 'requests>=2.18'] |
7 | 7 |
|
8 | 8 | setup( |
9 | 9 | name='alertlogic-sdk-definitions', |
|
13 | 13 | license='MIT license', |
14 | 14 | author='Alert Logic Inc.', |
15 | 15 | |
16 | | - python_requires='>=3.5', |
| 16 | + python_requires='>=3.6', |
17 | 17 | classifiers=[ |
18 | 18 | 'Development Status :: 3 - Alpha', |
19 | 19 | 'Intended Audience :: Developers', |
20 | 20 | 'License :: OSI Approved :: MIT License', |
21 | 21 | 'Natural Language :: English', |
22 | | - 'Programming Language :: Python :: 3.5', |
23 | 22 | 'Programming Language :: Python :: 3.6', |
24 | 23 | 'Programming Language :: Python :: 3.7', |
25 | 24 | 'Programming Language :: Python :: 3.8' |
|
28 | 27 | long_description=readme, |
29 | 28 | long_description_content_type='text/markdown', |
30 | 29 | scripts=[], |
| 30 | + # yeah yeah i know, circular dependency, but we need it for test now, later i'll think how to decouple |
| 31 | + # definitions parsing/loading and client |
31 | 32 | tests_require=requirements, |
32 | 33 | packages=find_packages(exclude=['contrib', 'docs', 'tests*', 'troubleshooting']), |
33 | 34 | include_package_data=True, |
|
0 commit comments