-
Notifications
You must be signed in to change notification settings - Fork 241
/
setup.py
42 lines (38 loc) · 1.24 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
# -*- coding:utf-8 -*-
import re
from pathlib import Path
from setuptools import find_packages, setup, find_namespace_packages
# Settings
FILE = Path(__file__).resolve()
PARENT = FILE.parent # root directory
README = (PARENT / "README_en.md").read_text(encoding="utf-8")
def get_version():
file = PARENT/'torchkeras/__init__.py'
return re.search(r'__version__="(.*)"', file.read_text(encoding="utf-8"),re.M)[1]
setup(
name="torchkeras",
version=get_version(),
author="lyhue1991,octopus,Laugh",
author_email="[email protected]",
description="pytorch❤️keras",
long_description=README,
install_requires=[
#'accelerate>=0.20.3',
#'tqdm',
#'torch',
#'torchmetrics',
#'plotly',
#'wandb'
],
long_description_content_type="text/markdown",
url="https://github.com/lyhue1991/torchkeras",
packages=find_namespace_packages(exclude=['torchkeras.assets','data']),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords="vlog, deep-learning, DL, pytorch, torch, keras",
python_requires='>=3.5'
)