-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.2 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.2 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
#!/usr/bin/env python3
from setuptools import setup
# Avoid importing the package at setup time to prevent import-time dependencies
version_meta: dict = {}
with open("monday/__version__.py", "r", encoding="utf-8") as vf:
exec(vf.read(), version_meta)
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="monday",
version=version_meta.get("__version__", "0.0.0"),
description="A Python client library for Monday.com",
long_description=long_description,
long_description_content_type="text/markdown; charset=UTF-8",
author=version_meta.get("__author__", ""),
author_email=version_meta.get("__email__", ""),
packages=["monday", "monday.resources", "monday.graphqlclient"],
url="https://github.com/ProdPerfect/monday",
include_package_data=True,
zip_safe=False,
license="BSD",
install_requires=[
"requests>=2.30.0",
],
python_requires=">=3.11",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
],
)