forked from prithiv256/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (47 loc) · 1.41 KB
/
Copy pathsetup.py
File metadata and controls
51 lines (47 loc) · 1.41 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import find_packages, setup
def read_version():
return "0.25.0"
# version_file = os.path.join(os.path.dirname(__file__), "vikit", "version.py")
# with open(version_file, "r") as f:
# exec(f.read())
# return locals()["__version__"]
setup(
name="vikit-ai-sdk-dev",
version=read_version(),
description="Vikit.ai Software Development Kit",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Vikit.ai",
author_email="hello@vikit.ai",
url="https://github.com/vikit-ai/sdk",
packages=find_packages(include=["vikit*"]),
install_requires=[
"aiohttp>=3.8.0",
"aiofiles>=0.8.0",
"google-cloud-storage>=2.0.0",
"tenacity>=8.0.0",
"pytest>=7.0.0",
"pytest-asyncio>=0.18.0",
"CairoSVG>=2.7.1",
"opencv-python>=4.10.0.84",
],
extras_require={
"dev": [
"pytest",
"pytest-asyncio",
"pytest-cov",
"black",
"isort",
"flake8",
"wheel",
],
},
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta", # Corrected classifier
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)