|
17 | 17 | classifiers=[
|
18 | 18 | 'Development Status :: 4 - Beta',
|
19 | 19 | 'Environment :: Console',
|
20 |
| - 'Programming Language :: Python', |
21 |
| - 'Programming Language :: Python :: 3', |
22 |
| - 'Programming Language :: Python :: 3.6', |
| 20 | + 'Framework :: AsyncIO', |
23 | 21 | 'Intended Audience :: Developers',
|
24 | 22 | 'Intended Audience :: Information Technology',
|
25 | 23 | 'Intended Audience :: System Administrators',
|
26 | 24 | 'License :: OSI Approved :: MIT License',
|
27 | 25 | 'Operating System :: Unix',
|
28 | 26 | 'Operating System :: POSIX :: Linux',
|
29 |
| - 'Topic :: Software Development :: Libraries :: Python Modules', |
| 27 | + 'Programming Language :: Python', |
| 28 | + 'Programming Language :: Python :: 3', |
| 29 | + 'Programming Language :: Python :: 3 :: Only', |
| 30 | + 'Programming Language :: Python :: 3.6', |
30 | 31 | 'Topic :: Internet',
|
| 32 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
31 | 33 | 'Topic :: System :: Clustering',
|
32 | 34 | 'Topic :: System :: Distributed Computing',
|
33 |
| - 'Topic :: System :: Systems Administration', |
34 | 35 | 'Topic :: System :: Monitoring',
|
35 |
| - 'Framework :: AsyncIO', |
| 36 | + 'Topic :: System :: Systems Administration', |
36 | 37 | ],
|
| 38 | + python_requires='>=3.6', |
37 | 39 | author='Samuel Colvin',
|
38 | 40 |
|
39 | 41 | url='https://github.com/samuelcolvin/arq',
|
|
45 | 47 | arq=arq.cli:cli
|
46 | 48 | """,
|
47 | 49 | install_requires=[
|
48 |
| - 'async-timeout==1.1.0', |
49 |
| - 'aioredis>=0.2.9', |
50 |
| - 'click>=6.6', |
| 50 | + 'async-timeout>=1.2.1', |
| 51 | + 'aioredis>=0.3.1', |
| 52 | + 'click>=6.7', |
51 | 53 | 'msgpack-python>=0.4.8',
|
52 | 54 | ],
|
53 | 55 | extras_require={
|
54 |
| - 'testing': ['pytest>=3.0.5'], |
| 56 | + 'testing': ['pytest>=3.1.0'], |
55 | 57 | },
|
56 | 58 | )
|
0 commit comments