Move dependency requirements to setup.py from requirements.txt (#73)

* Move dependency requirements to setup.py from requirements.txt
This commit is contained in:
kroesche 2021-09-24 07:56:20 -05:00 committed by GitHub
parent 6f955db5a0
commit 3fbd99d1e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 3 deletions

View File

@ -21,7 +21,6 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r test-requirements.txt
- name: Conforming code

View File

@ -12,7 +12,6 @@ Python 3.6+
### Installation
```
pip install git+https://github.com/matthewlai/JLCKicadTools
pip install -r requirements.txt
```
In case you do not have pip installed. See:

View File

@ -1 +0,0 @@
logzero==1.5.0

View File

@ -13,6 +13,7 @@ setup(
packages=find_packages(),
include_package_data=True,
python_requires='>=3.6',
install_requires=['logzero>=1.5'],
entry_points={"console_scripts": [
"jlc-kicad-tools = jlc_kicad_tools.generate_jlc_files:main"
]