@@ -25,7 +25,8 @@ def run_tests(self):
25
25
setup (
26
26
name = 'flask-sqlacodegen' ,
27
27
description = 'Automatic model code generator for SQLAlchemy with Flask support' ,
28
- long_description = open ('README.rst' ).read (),
28
+ long_description = open ("README.md" ).read (),
29
+ long_description_content_type = "text/markdown" ,
29
30
version = sqlacodegen .version ,
30
31
author = 'Kamil Sindi' ,
31
32
classifiers = [
@@ -36,15 +37,14 @@ def run_tests(self):
36
37
'Topic :: Database' ,
37
38
'Topic :: Software Development :: Code Generators' ,
38
39
'Programming Language :: Python' ,
39
- 'Programming Language :: Python :: 2.6' ,
40
40
'Programming Language :: Python :: 2.7' ,
41
41
'Programming Language :: Python :: 3' ,
42
42
'Programming Language :: Python :: 3.2' ,
43
43
'Programming Language :: Python :: 3.3' ,
44
44
'Programming Language :: Python :: 3.4' ,
45
45
'Programming Language :: Python :: 3.5' ,
46
46
'Programming Language :: Python :: 3.6' ,
47
- 'Programming Language :: Python :: 3.7'
47
+ 'Programming Language :: Python :: 3.7' ,
48
48
],
49
49
keywords = ['sqlalchemy' , 'sqlacodegen' , 'flask' ],
50
50
license = 'MIT' ,
0 commit comments