-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 916 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
from setuptools import find_packages, setup
install_requires = []
with open("requirements.txt") as f:
for module in f:
install_requires.append(module.strip())
setup(
name="graphql-client",
version="0.0.1",
packages=find_packages(),
url="https://github.com/jaswanth098/graphql-client",
install_requires=install_requires,
author="jaswanth098",
package_dir={"graphql-client": "graphql_client"},
author_email="[email protected]",
description="Grapqhl Client to make query, mutation and subscriptions",
keywords=["graphql", "graphql-client"],
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"License :: MIT License",
],
)