File tree Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 1
1
include README.rst LICENSE CHANGELOG
2
- include runtests.py tox.ini
3
- include example.py
Original file line number Diff line number Diff line change @@ -5,3 +5,13 @@ max-line-length = 119
5
5
6
6
[bdist_wheel]
7
7
universal = 1
8
+
9
+ [metadata]
10
+ license = " MIT"
11
+ license_file = LICENSE
12
+
13
+ author =yutaka.matsubara
14
+ author_email =yutaka.matsubara@gmail.com
15
+
16
+ maintainer =INADA Naoki
17
+ maintainer_email =songofacandy@gmail.com
Original file line number Diff line number Diff line change 2
2
import io
3
3
from setuptools import setup , find_packages
4
4
5
- version = __import__ ( 'pymysql' ). VERSION_STRING
5
+ version = "0.9.1"
6
6
7
7
with io .open ('./README.rst' , encoding = 'utf-8' ) as f :
8
8
readme = f .read ()
14
14
project_urls = {
15
15
"Documentation" : "https://pymysql.readthedocs.io/" ,
16
16
},
17
- author = 'yutaka.matsubara' ,
18
- author_email = 'yutaka.matsubara@gmail.com' ,
19
- maintainer = 'INADA Naoki' ,
20
- maintainer_email = 'songofacandy@gmail.com' ,
21
17
description = 'Pure Python MySQL Driver' ,
22
18
long_description = readme ,
23
- license = "MIT" ,
24
- packages = find_packages (),
19
+ packages = find_packages (exclude = ['tests*' , 'pymysql.tests*' ]),
25
20
install_requires = [
26
21
"cryptography" ,
27
22
],
You can’t perform that action at this time.
0 commit comments