Skip to content

Commit

Permalink
Merge pull request #229 from bug-or-feature/fix_dependencies
Browse files Browse the repository at this point in the history
Sphinx should not be included as a dependency
  • Loading branch information
bug-or-feature authored Oct 2, 2021
2 parents c456747 + 7341e06 commit b824541
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 20 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ Pipfile.lock
# env
.github/.env
.python-version
.env/

.vscode

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
trading_ig
==========

A lightweight wrapper for the IG Markets API written in Python. Simplifies access to the IG REST and Streaming APIs
A lightweight Python wrapper for the IG Markets API. Simplifies access to the IG REST and Streaming APIs
with a live or demo account.

What is it?
Expand Down
2 changes: 1 addition & 1 deletion docs/source/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ If you're sure that the problem is with this library, please:
* dependencies and their versions
* the full output trace including the error messages

Any issues created without this information will be ignored and/or closed without response
An issue without all this information may be ignored and/or closed without response


Why are there both ``setup.py`` and ``pyproject.toml`` files?
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
trading_ig
==========

A lightweight wrapper for the IG Markets API written in Python. Simplifies access to the IG REST and Streaming APIs
A lightweight Python wrapper for the IG Markets API. Simplifies access to the IG REST and Streaming APIs
with a live or demo account.

What is it?
Expand Down
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "trading_ig"
version = "0.0.12"
description = "A lightweight wrapper for the IG Markets API written in Python"
description = "A lightweight Python wrapper for the IG Markets API"
authors = ["Femto Trader <[email protected]>"]
maintainers = ["Andy Geach <[email protected]>"]
license = "BSD-3-Clause"
Expand Down Expand Up @@ -37,8 +37,6 @@ six = "^1.15"
pandas = { version = "^1", optional = true }
munch = { version = "^2.5", optional = true }
tenacity = { version = "^7.0", optional = true }
Sphinx = { version = "^4.0.3", optional = true }
sphinx-rtd-theme = { version = "^0.5.2", optional = true }

[tool.poetry.extras]
pandas = ["pandas"]
Expand All @@ -53,8 +51,8 @@ docs = [
flake8 = "^3.9"
pytest = "^6.2"
responses = "^0.12"
coverage = "^5.5"
coveralls = "^3.2"
sphinx-rtd-theme = {version = "^1.0.0", optional = true}

[tool.poetry.urls]
"Issues" = "https://github.com/ig-python/ig-markets-api-python-library/issues"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def readme():
# https://packaging.python.org/en/latest/development.html#single-sourcing-the-version
# version='0.0.1',
version=__version__,
description="A lightweight wrapper for the IG Markets API written in Python",
description="A lightweight Python wrapper for the IG Markets API",
long_description=readme(),
# The project's main homepage.
url=__url__,
Expand Down
12 changes: 0 additions & 12 deletions tox.ini

This file was deleted.

0 comments on commit b824541

Please sign in to comment.