forked from dapalex/py-graphql-mapper
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
1 addition
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ authors = [ | |
{ name="Mikita Kuzniatsou", email="[email protected]" }, | ||
{ name="Alex Dap", email="[email protected]" }, | ||
] | ||
readme = "README.md" | ||
readme = "README.MD" | ||
keywords = ["python", "graphql", "mapping", "dataclass"] | ||
license = { file = "LICENSE" } | ||
requires-python = ">=3.10" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
from setuptools import setup | ||
|
||
from pathlib import Path | ||
this_directory = Path(__file__).parent | ||
long_description = (this_directory / "README.MD").read_text() | ||
setup( | ||
name='gqldataclass', | ||
version='1.0.1', | ||
url='https://github.com/nikikuzi/graphql-dataclass/tree/1.0.0', | ||
author='Mikita Kuzniatsou, Alex Dap', | ||
author_email='[email protected], [email protected]', | ||
description='A python library to generate dataclasses for GraphQL types', | ||
long_description=long_description, | ||
include_package_data=True, | ||
packages=['pygqlmap', 'pygqlmap.src', 'codegen', 'codegen.src', 'codegen.src.templates'], | ||
data_files=[('', ['pygqlmap/config.ini'])], | ||
|