forked from MariaDB/mariadb_kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 851 Bytes
/
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
import os
from setuptools import find_packages, setup
with open("README.md") as f:
readme = f.read()
setup(
name="mariadb_kernel",
packages=find_packages(),
description="A simple MariaDB Jupyter kernel",
long_description=readme,
long_description_content_type="text/markdown",
author="MariaDB Foundation",
author_email="[email protected]",
url="https://github.com/MariaDB/mariadb_kernel",
install_requires=open("requirements.txt").read().splitlines(),
python_requires=">=3.5",
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
],
use_scm_version={
"version_scheme": "guess-next-dev",
"local_scheme": "dirty-tag",
"write_to": "mariadb_kernel/_version.py",
},
setup_requires=["setuptools_scm"],
)