forked from activeloopai/deeplake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.11 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
import os
import sys
from setuptools import find_packages, setup
from setuptools.command.install import install
project = "hub"
VERSION = "1.0.0"
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"), "r") as f:
requirements = f.readlines()
setup(
name=project,
version=VERSION,
description="Snark Hub",
long_description=long_description,
long_description_content_type="text/markdown",
author="Snark AI Inc.",
author_email="support@activeloop.ai",
url="https://github.com/snarkai/hub",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
keywords="snark-hub",
python_requires=">=3",
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"],
)