forked from PySimpleSQL/pysimplesql
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 880 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
#!/usr/bin/python3
import setuptools
def readme():
try:
with open('README.md') as f:
return f.read()
except IOError:
return ''
setuptools.setup(
name="pysimplesql",
version="0.1.1",
author="Jonathan Decker",
author_email="[email protected]",
description="sqlite3 database binding for PySimpleGUI",
long_description=readme(),
long_description_content_type="text/markdown",
keywords="SQL database application front-end access libre office GUI PySimpleGUI",
url="https://github.com/PySimpleSQL/PySimpleSQL",
packages=setuptools.find_packages(),
classifiers=(
"Programming Language :: Python :: 3"
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Topic :: Database :: Application",
"Operating System :: OS Independent"
)
)