neo-python的核心功能

neocore的Python项目详细描述


开始

您需要Python3.5或更高版本!

您可以使用 轻松安装或 pip从pypi安装 neocore

$ pip install -U neocore

或者,如果要处理代码,请克隆此存储库并设置您的venv:

  • 克隆回购协议: git clone https://github.com/cityofzion/neo python core.git
  • 创建Python3虚拟环境并激活它:
$ python3 -m venv venv
$source venv/bin/activate
  • 然后安装要求:
$ pip install -e .
$ pip install -r requirements_dev.txt

有用的命令

$ make lint
$ make test$ make coverage

发布清单

(仅限管理员)

在github上发布新版本会自动将此版本上载到pypi。 这是发布新版本的清单:

# Only in case you want to increase the version number again (eg. scope changed from patch to minor):
bumpversion --no-tag minor|major

# Update ``HISTORY.rst`` with the new version number and the changes and commit this
vi HISTORY.rst
git commit -m "Updated HISTORY.rst" HISTORY.rst

# Set the release version number and create the tag
bumpversion release

# Increase patch number and add `-dev`bumpversion --no-tag patch

# Push to GitHub, which also updates the PyPI package
git push && git push --tags

历史记录

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
由于外键约束,java数据库插入失败   java在对失败的测试用例截图时出错,并且它没有附加到扩展报告中   java FragmentPagerAdapter总是从第一页开始   java内存泄漏,当我将数据从一个树存储库复制到另一个ext js 4.1时   java确保带有特定注释的字段是“私有的”   Java如何将UTC毫秒转换为UTC日期   开源Java:Solaris上的AWT   java为什么BufferedReader只读取第一行?   执行数据库查询时,java JTable不会刷新   java 7中的下划线和二进制文字。!!!??   java使用STaX将xml转换为另一个xml需要很多时间   hadoop如何使用JavaAPI从hbase中的表中选择特定列   使用JLabel的java拖放   用于“绘制”pdf文件的pdf生成Java库   java getResourceAsStream返回null?   java在目标帧中打开窗口   滚动对象时,java鼠标光标不会改变   java有人能解释二进制搜索树中的递归delete()并帮我转换它吗