Skip to content

Commit 89bc129

Browse files
committed
revert unwanted changes
1 parent ec0b5a2 commit 89bc129

File tree

2 files changed

+19
-8
lines changed

2 files changed

+19
-8
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,10 @@ target/
6464

6565
#Ipython Notebook
6666
.ipynb_checkpoints
67+
68+
# PyCharm
69+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
70+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
71+
# and can be added to the global gitignore or merged into this file. For a more nuclear
72+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
73+
.idea/

setup.py

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,25 @@
3030
"typing-extensions >= 4.7.1",
3131
]
3232

33+
# read the contents of your README file
34+
from pathlib import Path
35+
36+
this_directory = Path(__file__).parent
37+
long_description = (this_directory / "README_FOR_PYPI.md").read_text()
38+
3339
setup(
3440
name=NAME,
3541
version=VERSION,
3642
description="mcode-sdk-api",
37-
author="OpenAPI Generator community",
38-
author_email="[email protected]",
43+
author="Monday.Com",
44+
author_email="[email protected]",
3945
url="",
40-
keywords=["OpenAPI", "OpenAPI-Generator", "mcode-sdk-api"],
46+
keywords=["monday-code"],
4147
install_requires=REQUIRES,
4248
packages=find_packages(exclude=["test", "tests"]),
4349
include_package_data=True,
4450
license="MIT",
45-
long_description_content_type='text/markdown',
46-
long_description="""\
47-
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
48-
""", # noqa: E501
51+
long_description=long_description,
52+
long_description_content_type="text/markdown",
4953
package_data={"monday_code": ["py.typed"]},
50-
)
54+
)

0 commit comments

Comments
 (0)