|
27 | 27 | from setuptools.command import sdist as setuptools_sdist |
28 | 28 |
|
29 | 29 |
|
30 | | -CYTHON_DEPENDENCY = 'Cython==0.28.3' |
| 30 | +CYTHON_DEPENDENCY = 'Cython==0.28.4' |
31 | 31 |
|
32 | 32 | # Minimal dependencies required to test asyncpg. |
33 | 33 | TEST_DEPENDENCIES = [ |
@@ -246,18 +246,23 @@ def finalize_options(self): |
246 | 246 | description='An asyncio PosgtreSQL driver', |
247 | 247 | long_description=readme, |
248 | 248 | classifiers=[ |
249 | | - 'License :: OSI Approved :: Apache Software License', |
| 249 | + 'Development Status :: 5 - Production/Stable', |
250 | 250 | 'Framework :: AsyncIO', |
251 | 251 | 'Intended Audience :: Developers', |
252 | | - 'Programming Language :: Python :: 3 :: Only', |
253 | | - 'Programming Language :: Python :: 3.5', |
254 | | - 'Programming Language :: Python :: 3.6', |
| 252 | + 'License :: OSI Approved :: Apache Software License', |
255 | 253 | 'Operating System :: POSIX', |
256 | 254 | 'Operating System :: MacOS :: MacOS X', |
257 | 255 | 'Operating System :: Microsoft :: Windows', |
258 | | - 'Development Status :: 5 - Production/Stable', |
| 256 | + 'Programming Language :: Python :: 3 :: Only', |
| 257 | + 'Programming Language :: Python :: 3.5', |
| 258 | + 'Programming Language :: Python :: 3.6', |
| 259 | + 'Programming Language :: Python :: 3.7', |
| 260 | + 'Programming Language :: Python :: Implementation :: CPython', |
| 261 | + 'Topic :: Database :: Front-Ends', |
259 | 262 | ], |
260 | | - platforms=['POSIX'], |
| 263 | + platforms=['macOS', 'POSIX', 'Windows'], |
| 264 | + python_requires='>=3.5.0', |
| 265 | + zip_safe=False, |
261 | 266 | author='MagicStack Inc', |
262 | 267 | author_email='hello@magic.io', |
263 | 268 | url='https://github.com/MagicStack/asyncpg', |
|
0 commit comments