forked from activeloopai/deeplake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (40 loc) · 1.4 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
import os
import re
from setuptools import find_packages, setup
project_name = "hub"
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "hub/requirements/common.txt")) as f:
requirements = f.readlines()
with open(os.path.join(this_directory, "hub/requirements/tests.txt")) as f:
tests = f.readlines()
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
init_file = os.path.join(project_name, "__init__.py")
def get_property(prop):
result = re.search(
# find variable with name `prop` in the __init__.py file
fr'{prop}\s*=\s*[\'"]([^\'"]*)[\'"]',
open(init_file).read(),
)
return result.group(1)
setup(
name=project_name,
version=get_property("__version__"),
description="Activeloop Hub",
long_description=long_description,
long_description_content_type="text/markdown",
author="activeloop.ai",
author_email="support@activeloop.ai",
packages=find_packages(),
install_requires=requirements,
tests_require=tests,
include_package_data=True,
zip_safe=False,
entry_points={"console_scripts": ["activeloop = hub.cli.commands:cli"]},
setup_requires=[],
dependency_links=[],
project_urls={
"Documentation": "https://docs.activeloop.ai/",
"Source": "https://github.com/activeloopai/Hub",
},
)