This repository has been archived by the owner on Mar 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
50 lines (46 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
import setuptools
import os
# package metadata
NAME = 'caffe2onnx'
VERSION = '2.0.1'
DESCRIPTION = 'Convert Caffe models to ONNX.'
LICENSE = 'BSD-3'
GIT = 'https://github.com/asiryan/caffe-onnx'
PYTHON = '>=3.5'
# directory
this = os.path.dirname(__file__)
# readme
with open(os.path.join(this, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
# setup tools
setuptools.setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description = LONG_DESCRIPTION,
long_description_content_type='text/markdown',
license=LICENSE,
packages=setuptools.find_packages(),
python_requires=PYTHON,
author='Valery Asiryan',
author_email='[email protected]',
url=GIT,
install_requires=[
'protobuf',
'onnx==1.6.0'
],
classifiers=[
'Topic :: Software Development :: Libraries',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
)