-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (35 loc) · 1.29 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
import os
from setuptools import find_packages, setup
base_dir = os.path.dirname(os.path.abspath(__file__))
def get_long_description():
readme_path = os.path.join(base_dir, "README.md")
with open(readme_path, encoding="utf-8") as readme_file:
return readme_file.read()
def get_project_version():
version = {}
with open(os.path.join(base_dir, "tlxcv", "version.py"), encoding="utf-8") as fp:
exec(fp.read(), version)
return version
version = get_project_version()
def req_file(filename, folder="requirements"):
with open(os.path.join(folder, filename)) as f:
content = f.readlines()
# you may also want to remove whitespace characters
# Example: `\n` at the end of each line
return [x.strip() for x in content]
install_requires = req_file("requirements.txt")
setup(
name="tlxcv",
version=version["__version__"],
license="apache",
description="tensorlayerx computer vision application library",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="tensorlayerx",
author_email="",
packages=find_packages(),
url="https://github.com/tensorlayer/TLXCV",
keywords="tensorlayerx computer vision",
python_requires=">=3.5",
install_requires=install_requires,
)