1 Star 0 Fork 8

大_于/risc-v

forked from Gitee 极速下载/risc-v 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.24 KB
一键复制 编辑 原始数据 按行查看 历史
Neel Gala 提交于 2020-07-27 20:18 +08:00 . Tech config updates (#33)
import os
import codecs
import pip
from setuptools import setup, find_packages
import riscv_config
# Base directory of package
here = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
with codecs.open(os.path.join(here, *parts), 'r') as fp:
return fp.read()
#Long Description
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(name="riscv_config",
version=riscv_config.__version__,
description="RISC-V Configuration Validator",
long_description=long_description,
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: BSD License",
"Development Status :: 4 - Beta"
],
url='https://github.com/riscv/riscv-config',
author='InCore Semiconductors Pvt. Ltd.',
author_email='neelgala@incoresemi.com',
license='BSD-3-Clause',
packages=find_packages(),
install_package_data=True,
package_dir={'riscv_config': 'riscv_config/'},
package_data={'riscv_config': ['schemas/*']},
install_requires=['Cerberus>=1.3.1', 'ruamel.yaml>=0.16.0', 'pyyaml>=5.1.1'],
python_requires=">=3.6.0",
entry_points={
"console_scripts": ["riscv-config=riscv_config.main:main"],
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dayu/risc-v.git
git@gitee.com:dayu/risc-v.git
dayu
risc-v
risc-v
master

搜索帮助