Skip to content

Commit

Permalink
Merge branch 'master' of github.com:cnpem-sei/pydrs
Browse files Browse the repository at this point in the history
  • Loading branch information
gfrn committed Sep 16, 2022
2 parents d1f83c2 + 45daf9a commit a6ee627
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 16 deletions.
1 change: 0 additions & 1 deletion .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: Sphinx docs
on:
push:
branches:
- master
- dict-update

jobs:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
![Latest tag](https://img.shields.io/github/tag/lnls-sirius/pydrs.svg?style=flat)
[![Latest release](https://img.shields.io/github/release/lnls-sirius/pydrs.svg?style=flat)](https://github.com/lnls-sirius/pydrs/releases)
[![PyPI version fury.io](https://badge.fury.io/py/pydrs.svg)](https://pypi.python.org/pypi/pydrs/)
[![Read the Docs](https://readthedocs.org/projects/spack/badge/?version=latest)](https://lnls-sirius.github.io/pydrs/)
[![Read the Docs](https://readthedocs.org/projects/spack/badge/?version=latest)](https://cnpem-sei.github.io/pydrs/)

## What is PyDRS?

Expand Down
23 changes: 9 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ classifiers=[
"Operating System :: OS Independent"
]
description=""
dependencies = [
"matplotlib",
"numpy",
"pyserial==3.5"
]
readme="README.md"
license = {text = "MIT License"}
requires-python=">=3.6"
Expand All @@ -41,15 +36,15 @@ where = ["src"]

[project.optional-dependencies]
dev = [
"bandit==1.7.0",
"black==21.10b0",
"flake8==4.0.1",
"flake8-bandit==2.1.2",
"flake8-bugbear==21.9.2",
"flake8-implicit-str-concat==0.2.0",
"mypy==0.812",
"bandit==1.7.4",
"black==22.8.0",
"flake8==5.0.4",
"flake8-bandit==4.1.1",
"flake8-bugbear==22.8.23",
"flake8-implicit-str-concat==0.3.0",
"mypy==0.971",
"mypy-extensions==0.4.3",
"pyflakes==2.4.0",
"pyflakes==2.5.0",
"types-setuptools",
"pytest==7.1.2"
]
]
15 changes: 15 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[metadata]
name = pydrs
version = attr: pydrs.__version__

[options]
package_dir=
=src
packages=find:
install_requires=
matplotlib==3.3.4
numpy
pyserial==3.5

[options.packages.find]
where=src

0 comments on commit a6ee627

Please sign in to comment.