-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·40 lines (34 loc) · 1006 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
30
31
32
33
34
35
36
37
38
39
40
import setuptools
def read(fname):
"""Return file content."""
with open(fname) as f:
content = f.read()
return content
description = "A query language for json"
try:
long_description = read("README.MD")
except IOError:
long_description = description
setuptools.setup(
name="json-ql",
package=["json-ql"],
version="0.2.2",
author="Bharat Sinha",
author_email="[email protected]",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Bharat23/json-ql",
packages=setuptools.find_packages(),
license="MIT",
keywords=["json", "query", "lookup", "dict", "list", "key"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
],
install_requires=[
],
python_requires=">=3.6",
)