Skip to content

Commit

Permalink
feat: add setup.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
ziqiangai committed Dec 1, 2023
1 parent 6ed1a74 commit 7875fb6
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions apitable.py/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

with open(".version", "r") as fh:
version_number = fh.read()

setuptools.setup(
name="apitable",
version=version_number,
author="apitable",
author_email="[email protected]",
description="Apitable Python SDK",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/apitable/apitable-sdks",
packages=[
"apitable", "apitable.datasheet", "apitable.types", "apitable.node", "apitable.space", "apitable.unit"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=["requests<=2.31.0", "pydantic==1.7", "environs<=9.5.0"],
)

0 comments on commit 7875fb6

Please sign in to comment.