forked from graphlit/graphlit-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 766 Bytes
/
setup.py
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
from setuptools import setup, find_packages
import os
# Read the content of your README file
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
version = os.getenv('PACKAGE_VERSION', '1.0.0')
setup(
name='graphlit-client',
version=version,
packages=find_packages(),
install_requires=[
'httpx',
'pydantic>=2.0.0,<3.0.0',
'PyJWT',
'websockets'
],
python_requires='>=3.6',
author='Unstruk Data Inc.',
author_email='[email protected]',
description='Graphlit API Python Client',
url='https://github.com/graphlit/graphlit-client-python',
long_description=long_description,
long_description_content_type="text/markdown",
)