-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 954 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 954 Bytes
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
import os
from pathlib import Path
from setuptools import setup, find_packages
PACKAGE_NAME = "graphgrid-sdk"
top_level_path = Path(__file__).parent.absolute()
with open(os.path.join(top_level_path, "README.md"), "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name=PACKAGE_NAME,
version="2.0.1",
packages=find_packages(),
url="https://docs.graphgrid.com/2.0/#/",
license="",
author="graphgrid",
author_email="",
description="GraphGrid Python SDK",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
install_requires=[
"requests~=2.27.1",
"javaproperties~=0.8.1",
],
python_requires="!=3.9.*, >=3.6",
)