|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | +# MegFlow is Licensed under the Apache License, Version 2.0 (the "License") |
| 3 | +# |
| 4 | +# Copyright (c) 2019-2021 Megvii Inc. All rights reserved. |
| 5 | +# |
| 6 | +# Unless required by applicable law or agreed to in writing, |
| 7 | +# software distributed under the License is distributed on an |
| 8 | +# "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 9 | + |
| 10 | +#!/usr/bin/env python |
| 11 | +# coding=utf-8 |
| 12 | +from setuptools import setup, find_packages |
| 13 | + |
| 14 | +setup( |
| 15 | + name="pyflow", |
| 16 | + version="0.1.0", |
| 17 | + packages=["pyflow"], |
| 18 | + author="Megvii IPU-SDK Team", |
| 19 | + author_email="megengine@megvii.com", |
| 20 | + url="https://github.com/MegEngine/MegFlow", |
| 21 | + include_package_data=True, |
| 22 | + classifiers=[ |
| 23 | + 'Development Status :: 3 - Alpha', |
| 24 | + 'Intended Audience :: Developers', |
| 25 | + 'License :: OSI Approved :: Apache Software License', |
| 26 | + 'Natural Language :: English', |
| 27 | + 'Operating System :: POSIX :: Linux', |
| 28 | + 'Programming Language :: C++', |
| 29 | + 'Programming Language :: Rust', |
| 30 | + 'Programming Language :: Python :: 3.6', |
| 31 | + 'Topic :: Software Development :: Libraries :: Application Frameworks', |
| 32 | + 'Topic :: Scientific/Engineering', |
| 33 | + 'Topic :: Scientific/Engineering :: Mathematics', |
| 34 | + 'Topic :: Scientific/Engineering :: Artificial Intelligence', |
| 35 | + 'Topic :: Software Development', |
| 36 | + 'Topic :: Software Development :: Libraries', |
| 37 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 38 | + ], |
| 39 | + python_requires='>=3.6,<3.7', |
| 40 | + package_data={ |
| 41 | + "":['run_with_plugins'] |
| 42 | + } |
| 43 | +) |
| 44 | + |
0 commit comments