forked from msight-tech/research-charnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 716 Bytes
/
setup.py
File metadata and controls
35 lines (30 loc) · 716 Bytes
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
#!/usr/bin/env python
# Copyright (c) Malong Technologies Co., Ltd.
# All rights reserved.
#
# Contact: github@malong.com
#
# This source code is licensed under the LICENSE file in the root directory of this source tree.
import glob
import os
from setuptools import find_packages
from setuptools import setup
requirements = [
"torchvision",
"ninja",
"yacs",
"cython",
"matplotlib",
"tqdm",
"opencv-python",
"scikit-image"
]
setup(
name="charnet",
version="0.0.1",
author="Malong Technologies",
url="https://github.com/MalongTech/research-charnet",
description="Convolutional Character Networks",
packages=find_packages(),
include_package_data=True,
)