From 6220ae9f876051a5e54c4367d93aaace837f93c2 Mon Sep 17 00:00:00 2001 From: Andrei Lapets Date: Sat, 18 Dec 2021 23:00:18 -0500 Subject: [PATCH] Add/fix links and adjust commands in README; update version and dependencies. --- README.rst | 8 +++++--- setup.py | 6 +++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index a78e7ad..8e4c97b 100644 --- a/README.rst +++ b/README.rst @@ -28,7 +28,7 @@ This embedded domain-specific language (DSL) makes it possible to write an algor Package Installation and Usage ------------------------------ -The package is available on PyPI:: +The package is available on `PyPI `_:: python -m pip install circuitry @@ -51,7 +51,8 @@ Testing and Conventions ----------------------- All unit tests are executed and their coverage is measured when using `nose `_ (see ``setup.cfg`` for configution details):: - nosetests + python -m pip install nose coverage + nosetests --cover-erase Alternatively, all unit tests are included in the module itself and can be executed using `doctest `_:: @@ -59,11 +60,12 @@ Alternatively, all unit tests are included in the module itself and can be execu Style conventions are enforced using `Pylint `_:: + python -m pip install pylint pylint circuitry Contributions ------------- -In order to contribute to the source code, open an issue or submit a pull request on the GitHub page for this library. +In order to contribute to the source code, open an issue or submit a pull request on the `GitHub page `_ for this library. Versioning ---------- diff --git a/setup.py b/setup.py index 4788393..449ae10 100644 --- a/setup.py +++ b/setup.py @@ -5,13 +5,13 @@ # The lines below can be parsed by `docs/conf.py`. name = "circuitry" -version = "0.2.0" +version = "0.3.0" setup( name=name, version=version, - packages=["circuitry",], - install_requires=["parts>=1.0.2","circuit>=0.3.1",], + packages=[name,], + install_requires=["parts~=1.2","circuit~=0.4",], license="MIT", url="https://github.com/nthparty/circuitry", author="Andrei Lapets",