mirror of
https://github.com/ejwa/gitinspector.git
synced 2024-11-16 00:28:25 +01:00
Added requirements building
This commit is contained in:
parent
bb291b3d74
commit
88a25f948a
3 changed files with 6 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -6,4 +6,5 @@ node_modules
|
|||
*.egg-info
|
||||
*.pyc
|
||||
*.tgz
|
||||
Pipfile.lock
|
||||
Pipfile.lock
|
||||
.coverage
|
4
Makefile
4
Makefile
|
@ -52,7 +52,7 @@ test-coverage: ## check code coverage quickly with the default Python
|
|||
release: dist ## package and upload a release
|
||||
twine upload dist/*
|
||||
|
||||
dist: clean ## builds source and wheel package
|
||||
dist: clean requirements ## builds source and wheel package
|
||||
python3 setup.py sdist
|
||||
python3 setup.py bdist_wheel
|
||||
ls -l dist
|
||||
|
@ -61,4 +61,4 @@ install: clean ## install the package to the active Python's site-packages
|
|||
python3 setup.py install
|
||||
|
||||
requirements:
|
||||
pipenv lock -r --dev > requirements_dev.txt
|
||||
pipenv lock -r --dev > requirements.txt
|
2
Pipfile
2
Pipfile
|
@ -4,6 +4,8 @@ verify_ssl = true
|
|||
name = "pypi"
|
||||
|
||||
[packages]
|
||||
twine = "*"
|
||||
coverage = "*"
|
||||
|
||||
[dev-packages]
|
||||
pytest = "*"
|
||||
|
|
Loading…
Reference in a new issue