This repository was archived by the owner on Jan 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (40 loc) · 1.26 KB
/
Copy pathsetup.py
File metadata and controls
44 lines (40 loc) · 1.26 KB
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
41
42
43
44
import pathlib
from setuptools import setup
# The directory containing this file
root_directory = pathlib.Path(__file__).parent
# The text of the README file
readme = (root_directory / "README.md").read_text(encoding="UTF-8")
# This call to setup() does all the work
setup(
name="python-qlient",
version="1.2.2",
description="A fast and modern graphql client library designed with simplicity in mind.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/Lab9/python-qlient",
author="Daniel Seifert",
author_email="info@danielseifert.ch",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Framework :: AsyncIO",
"Natural Language :: English",
],
keywords="python graphql client api async asyncio graph requests query mutation subscription",
packages=[
"qlient"
],
include_package_data=True,
install_requires=[
"requests==2.*",
"websockets==8.1"
],
entry_points={
"console_scripts": [
"qlient=qlient.cli:main"
]
},
)