Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include nextcode/VERSION
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[![Latest version on
PyPi](https://badge.fury.io/py/nextcode-sdk.svg)](https://badge.fury.io/py/nextcode-sdk)
[![Supported Python
versions](https://img.shields.io/pypi/pyversions/nextcode-sdk.svg)](https://pypi.org/project/nextcode-sdk/)
[![Code style:
black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
# nextcode Python SDK

Nextcode-sdk is a python package for interfacing with Wuxi Nextcode services.
Expand Down
2 changes: 1 addition & 1 deletion docs/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 9ee7b78410b62cb4902f6256d3a980ce
config: 5b72aef19e30327b4e6fc525fb16cdc3
tags: 645f666f9bcd5a90fca523b33c5a78b7
12 changes: 2 additions & 10 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
python-dateutil
PyYAML
requests
hjson
PyJWT
mock
pylint
responses
Expand All @@ -12,8 +7,5 @@ pylint2junit
twine
black
tox
sphinx
sphinx-autodoc-typehints
sphinx-rtd-theme
pandas
jupyter-sphinx-theme
mypy
pandas
12 changes: 5 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
[tox]
envlist =
black
py{37}
docs
skip_missing_interpreters = true

[testenv]
deps =
-r requirements.txt
commands = python -m pytest --cov=nextcode/ --tb=short

[testenv:black]
deps =
black
commands = black --exclude="venv|.tox" .
commands =
black --exclude="venv|.tox" .
python3 -m pytest --cov=nextcode/ --tb=short
mypy nextcode/ --ignore-missing-imports
python3 -m pylint -E nextcode/

[testenv:docs]
deps =
Expand Down