forked from Attakay78/Pytql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 904 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 904 Bytes
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
from setuptools import setup, find_packages
VERSION = "0.0.3"
DESCRIPTION = "Python Table Data Type with some SQL-like operations."
# Setting up
setup(
name="pytql",
version=VERSION,
author="AT_Khay (Richard Quaicoe)",
author_email="<richardquaicoe78@gmail.com>",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=open("README.md", "r").read(),
packages=find_packages(),
install_requires=[],
url="https://github.com/Attakay78/Pytql",
setup_requires=["wheel"],
keywords=["python", "table", "sql", "query", "filter"],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
)