-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (33 loc) · 953 Bytes
/
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
import os
from setuptools import setup
def read(*paths):
with open(os.path.join(*paths), 'r') as f:
return f.read()
requirements = [
'torch',
'torchvision',
'numpy',
'opencv-python-headless',
'onnx'
# 'matplotlib'
]
setup(
name='autocrop_kh',
version='0.0.3',
packages=['autocrop_kh'],
url='https://github.com/MetythornPenn/autocrop_kh.git',
license='Apache Software License 2.0',
author = 'Metythorn Penn',
author_email = '[email protected]',
keywords='autocrop_kh',
description='Document Extraction Inference API using DeepLabV3 with Pretrain Model',
install_requires=requirements,
long_description=(read('README.md')),
long_description_content_type='text/markdown',
classifiers= [
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
)