-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 668 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(
name='pygqlmap',
version='1.1.2',
url='https://github.com/dapalex/py-graphql-mapper/tree/1.1.2',
author='Alex Dap',
author_email='shlisi2017@gmail.com',
description='A python library to call GraphQL APIs without using hardcoded strings',
include_package_data=True,
packages=['pygqlmap', 'pygqlmap.src', 'codegen', 'codegen.src', 'codegen.src.templates'],
data_files=[('', ['pygqlmap/config.ini'])],
python_requires='>=3.10',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)