forked from activeloopai/deeplake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (49 loc) · 1.61 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
import os
from setuptools import find_packages, setup
project = "hub"
VERSION = "1.1.3"
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md")) as f:
long_description = f.read()
with open(os.path.join(this_directory, "requirements.txt")) as f:
requirements = f.readlines()
setup(
name=project,
version=VERSION,
description="Activeloop Hub",
long_description=long_description,
long_description_content_type="text/markdown",
author="Snark AI Inc.",
author_email="support@activeloop.ai",
license="MPL 2.0",
url="https://github.com/activeloopai/Hub",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
keywords="snark-hub",
project_urls={
"Documentation": "https://docs.activeloop.ai/",
"Source": "https://github.com/activeloopai/Hub",
},
classifiers=[
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
],
python_requires=">=3.6",
install_requires=requirements,
setup_requires=[],
dependency_links=[],
entry_points={
"console_scripts": [
"hub = hub.cli.command:cli",
"hub-local = hub.cli.local:cli",
"hub-dev = hub.cli.dev:cli",
]
},
tests_require=["pytest", "mock>=1.0.1"],
)