-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (49 loc) · 1.43 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import find_packages, setup
def get_version() -> str:
return "0.1.43"
install_requires = [
"requests",
"tqdm",
"getmac>=0.8.3",
"pyyaml>=5.1",
"importlib_metadata;python_version<'3.8'",
"packaging>=20.9",
"Pillow==8.4"
]
extras = {}
setup(
name="sharpai_hub",
version=get_version(),
author="SharpAI LLC",
author_email="simba@sharpai.org",
description=(
"Client library to download application from sharpai hub"
),
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords=(
"model-hub machine-learning models natural-language-processing deep-learning"
" Edge AI"
),
license="MIT",
url="https://github.com/SharpAI/sharpai_hub",
package_dir={"": "src"},
packages=find_packages("src"),
extras_require=extras,
entry_points={
"console_scripts": [
"sharpai-cli=sharpai_hub.cli:main"
]
},
python_requires=">=3.6.0",
install_requires=install_requires,
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)