Skip to content

Commit

Permalink
Updated configs and install
Browse files Browse the repository at this point in the history
  • Loading branch information
erich-hs committed Apr 20, 2023
1 parent 53c0c70 commit 171931d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 142 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
make install
pip install .[dev]
- name: Lint with pylint
run: |
make lint
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ share/python-wheels/
.installed.cfg
*.egg
MANIFEST
.pypirc

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
install:
pip install --upgrade pip &&\
pip install -r requirements.txt
pip install .
python -m pip install --upgrade pip &&\
python -m pip install .

lint:
pylint --disable=R,C,W1203,E1101 src.tabularcompare.compare src.tabularcompare.utils --fail-under=9.0
Expand Down
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,13 @@ description = "Tabular data comparison wrapper for DataComPy"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["Tabular", "Compare", "Data"]
license = { file = "LICENSE" }
license = { text = "Apache-2.0" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache License 2.0",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
dependencies = [
Expand Down
138 changes: 3 additions & 135 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,70 +2,14 @@
# This file is autogenerated by pip-compile with Python 3.9
# by the following command:
#
# pip-compile --all-extras --output-file=requirements.txt pyproject.toml
# pip-compile --output-file=requirements.txt pyproject.toml
#
astroid==2.15.3
# via pylint
black==23.3.0
# via tabularcompare (pyproject.toml)
bleach==6.0.0
# via readme-renderer
build==0.10.0
# via tabularcompare (pyproject.toml)
certifi==2022.12.7
# via requests
cffi==1.15.1
# via cryptography
charset-normalizer==3.1.0
# via requests
click==8.1.3
# via
# black
# tabularcompare (pyproject.toml)
coverage[toml]==7.2.3
# via pytest-cov
cryptography==40.0.2
# via secretstorage
# via tabularcompare (pyproject.toml)
datacompy==0.8.4
# via tabularcompare (pyproject.toml)
dill==0.3.6
# via pylint
docutils==0.19
# via readme-renderer
et-xmlfile==1.1.0
# via openpyxl
exceptiongroup==1.1.1
# via pytest
idna==3.4
# via requests
importlib-metadata==6.5.0
# via
# keyring
# twine
iniconfig==2.0.0
# via pytest
isort==5.12.0
# via pylint
jaraco-classes==3.2.3
# via keyring
jeepney==0.8.0
# via
# keyring
# secretstorage
keyring==23.13.1
# via twine
lazy-object-proxy==1.9.0
# via astroid
markdown-it-py==2.2.0
# via rich
mccabe==0.7.0
# via pylint
mdurl==0.1.2
# via markdown-it-py
more-itertools==9.1.0
# via jaraco-classes
mypy-extensions==1.0.0
# via black
numpy==1.24.1
# via
# datacompy
Expand All @@ -75,94 +19,18 @@ openpyxl==3.1.0
# via tabularcompare (pyproject.toml)
ordered-set==4.1.0
# via datacompy
packaging==23.1
# via
# black
# build
# pytest
pandas==1.5.2
# via
# datacompy
# pretty-html-table
# tabularcompare (pyproject.toml)
pathspec==0.11.1
# via black
pkginfo==1.9.6
# via twine
platformdirs==3.2.0
# via
# black
# pylint
pluggy==1.0.0
# via pytest
pretty-html-table==0.9.16
# via tabularcompare (pyproject.toml)
pycparser==2.21
# via cffi
pygments==2.15.1
# via
# readme-renderer
# rich
pylint==2.17.2
# via tabularcompare (pyproject.toml)
pyproject-hooks==1.0.0
# via build
pytest==7.3.1
# via
# pytest-cov
# tabularcompare (pyproject.toml)
pytest-cov==4.0.0
# via tabularcompare (pyproject.toml)
python-dateutil==2.8.2
# via pandas
pytz==2023.3
# via pandas
readme-renderer==37.3
# via twine
requests==2.28.2
# via
# requests-toolbelt
# twine
requests-toolbelt==0.10.1
# via twine
rfc3986==2.0.0
# via twine
rich==13.3.4
# via twine
secretstorage==3.3.3
# via keyring
six==1.16.0
# via
# bleach
# python-dateutil
tomli==2.0.1
# via
# black
# build
# coverage
# pylint
# pyproject-hooks
# pytest
tomlkit==0.11.7
# via pylint
twine==4.0.2
# via tabularcompare (pyproject.toml)
typing-extensions==4.5.0
# via
# astroid
# black
# pylint
urllib3==1.26.15
# via
# requests
# twine
webencodings==0.5.1
# via bleach
wheel==0.40.0
# via tabularcompare (pyproject.toml)
wrapt==1.15.0
# via astroid
# via python-dateutil
xlwt==1.3.0
# via tabularcompare (pyproject.toml)
zipp==3.15.0
# via importlib-metadata

0 comments on commit 171931d

Please sign in to comment.