9
9
PY_VER = sys .version_info
10
10
11
11
if PY_VER < (3 , 4 ):
12
- raise RuntimeError ("aiopg doesn't suppport Python earlier than 3.4" )
12
+ raise RuntimeError ("aiopg doesn't support Python earlier than 3.4" )
13
13
14
14
15
15
def read (f ):
16
16
return open (os .path .join (os .path .dirname (__file__ ), f )).read ().strip ()
17
17
18
+
18
19
extras_require = {'sa' : ['sqlalchemy>=1.1' ], }
19
20
20
21
@@ -29,12 +30,15 @@ def read_version():
29
30
else :
30
31
raise RuntimeError ('Cannot find version in aiopg/__init__.py' )
31
32
33
+
32
34
classifiers = [
33
35
'License :: OSI Approved :: BSD License' ,
34
36
'Intended Audience :: Developers' ,
35
37
'Programming Language :: Python :: 3' ,
36
38
'Programming Language :: Python :: 3.4' ,
37
39
'Programming Language :: Python :: 3.5' ,
40
+ 'Programming Language :: Python :: 3.6' ,
41
+ 'Programming Language :: Python :: 3.7' ,
38
42
'Operating System :: POSIX' ,
39
43
'Operating System :: MacOS :: MacOS X' ,
40
44
'Operating System :: Microsoft :: Windows' ,
@@ -48,7 +52,7 @@ def read_version():
48
52
49
53
setup (name = 'aiopg' ,
50
54
version = read_version (),
51
- description = ( 'Postgres integration with asyncio.' ) ,
55
+ description = 'Postgres integration with asyncio.' ,
52
56
long_description = '\n \n ' .join ((read ('README.rst' ), read ('CHANGES.txt' ))),
53
57
classifiers = classifiers ,
54
58
platforms = ['POSIX' ],
0 commit comments