2 Star 8 Fork 4

Mr_Mao/wafer_map

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 2.04 KB
一键复制 编辑 原始数据 按行查看 历史
# -*- coding: utf-8 -*-
#from distutils.core import setup
# ---------------------------------------------------------------------------
### Imports
# ---------------------------------------------------------------------------
# Standard Library
import os
from setuptools import setup, find_packages
import sys
# Third Party
# Package / Application
# Read the "__about__.py" file.
# This is how the `cryptography` package does it. Seems like a decent
# way because it prevents the main package from being imported.
# I'm not sure how I feel about `exec()` though...
about = {}
base_dir = os.path.dirname(__file__)
sys.path.insert(0, base_dir)
with open(os.path.join(base_dir, "wafer_map", "__about__.py")) as f:
exec(f.read(), about)
with open(os.path.join(base_dir, "README.md")) as f:
long_description = f.read()
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
]
setup(
name=about["__package_name__"],
version=about["__version__"],
description=about["__description__"],
long_description_content_type="text/markdown",
long_description=long_description,
url=about["__project_url__"],
author=about["__author__"],
license=about["__license__"],
packages=find_packages(),
classifiers=classifiers,
install_requires=["wxPython>=4.0.0", "numpy>=1.12.1", "colour>=0.1.4"],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/passer_x/wafer_map.git
git@gitee.com:passer_x/wafer_map.git
passer_x
wafer_map
wafer_map
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385