-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (37 loc) · 1.39 KB
/
setup.py
File metadata and controls
42 lines (37 loc) · 1.39 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
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
import os
long_description = """
GraphQLBuilder is a package that can support the creation of GraphQL queries. It provides various methods for translating dicts or lists into mutation objects, which can then be used in a gql query.
Attention! This package is optimized for using a hasura.io endpoint - not all GraphQL functions are supported.
"""
setup(
name='GraphQLBuilder',
version='0.2.1',
url='https://github.com/sciencemediacenter/GraphQLBuilder',
license='GPLv3',
author='Hendrik Adam',
author_email='hendrik.adam@sciencemediacenter.de',
install_requires=[
'requests>=2.26.0',
'types-requests>=2.26.0',
],
packages=find_packages(),
tests_require=['pytest'],
description='GraphQL Query Builder with focus on hasura.io',
long_description = long_description,
platforms='any',
keywords = "GraphQL, hasura.io, query builder",
classifiers = [
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)