forked from onnx/onnxmltools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (51 loc) · 1.75 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
51
52
53
54
55
56
57
58
59
# SPDX-License-Identifier: Apache-2.0
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
import os
this = os.path.dirname(__file__)
with open(os.path.join(this, "requirements.txt"), "r") as f:
requirements = [
_ for _ in [_.strip("\r\n ") for _ in f.readlines()] if _ is not None
]
packages = find_packages()
assert packages
# read version from the package file.
version_str = "1.0.0"
with open(os.path.join(this, "onnxmltools/__init__.py"), "r") as f:
line = [
_
for _ in [_.strip("\r\n ") for _ in f.readlines()]
if _.startswith("__version__")
]
if len(line) > 0:
version_str = line[0].split("=")[1].strip('" ')
README = os.path.join(os.getcwd(), "README.md")
with open(README) as f:
long_description = f.read()
setup(
name="onnxmltools",
version=version_str,
description="Converts Machine Learning models to ONNX",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache License v2.0",
author="ONNX",
author_email="[email protected]",
url="https://github.com/onnx/onnxmltools",
packages=packages,
include_package_data=True,
install_requires=requirements,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
],
)