-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
38 lines (34 loc) · 1.22 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import os
import sys
import json
from setuptools import setup, find_packages
def readme():
with open('README.md', encoding='utf-8') as f:
return f.read()
setup(name='mysql_kernel',
version='0.4.1',
description='A mysql kernel for Jupyter.',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/Hourout/mysql_kernel',
author='JinQing Lee',
author_email='hourout@163.com',
keywords=['jupyter_kernel', 'mysql_kernel'],
license='Apache License Version 2.0',
install_requires=['pymysql', 'sqlalchemy', 'pandas', 'jupyter'],
classifiers = [
'Framework :: IPython',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: System :: Shells',
],
packages=['mysql_kernel'],
zip_safe=False
)