|
20 | 20 | name='testcontainers',
|
21 | 21 | packages=setuptools.find_packages(exclude=['tests']),
|
22 | 22 | version='2.5.0',
|
23 |
| - description=('Library provides lightweight, throwaway ' |
24 |
| - 'instances of common databases, ' |
25 |
| - 'Selenium web browsers, or anything else that can ' |
26 |
| - 'run in a Docker container'), |
| 23 | + description='Library provides lightweight, throwaway instances of common databases, Selenium ' |
| 24 | + 'web browsers, or anything else that can run in a Docker container', |
27 | 25 | author='Sergey Pirogov',
|
28 | 26 |
|
29 | 27 | url='https://github.com/testcontainers/testcontainers-python',
|
|
32 | 30 | 'License :: OSI Approved :: Apache Software License',
|
33 | 31 | 'Intended Audience :: Information Technology',
|
34 | 32 | 'Intended Audience :: Developers',
|
35 |
| - 'Programming Language :: Python :: 3.4', |
36 |
| - 'Topic :: Software Development :: ' |
37 |
| - 'Libraries :: Python Modules', |
| 33 | + 'Programming Language :: Python :: 3', |
| 34 | + 'Programming Language :: Python :: 3.5', |
| 35 | + 'Programming Language :: Python :: 3.6', |
| 36 | + 'Programming Language :: Python :: 3.7', |
| 37 | + 'Programming Language :: Python :: 3.8', |
| 38 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
38 | 39 | 'Operating System :: Microsoft :: Windows',
|
39 | 40 | 'Operating System :: POSIX',
|
40 | 41 | 'Operating System :: Unix',
|
|
51 | 52 | 'mysql': ['sqlalchemy', 'pymysql'],
|
52 | 53 | 'oracle': ['sqlalchemy', 'cx_Oracle'],
|
53 | 54 | 'postgresql': ['sqlalchemy', 'psycopg2-binary'],
|
54 |
| - 'selenium': ['selenium==2.53.1'], |
| 55 | + 'selenium': ['selenium'], |
55 | 56 | 'google-cloud-pubsub': ['google-cloud-pubsub'],
|
56 | 57 | 'mongo': ['pymongo']
|
57 | 58 | },
|
58 | 59 | long_description_content_type="text/markdown",
|
59 | 60 | long_description=long_description,
|
| 61 | + python_requires='~=3.5', |
60 | 62 | )
|
0 commit comments