Skip to content
Snippets Groups Projects
Verified Commit c5333fce authored by Jan Maximilian Michal's avatar Jan Maximilian Michal
Browse files

Minor changes to packaging and started signing

parent 3ce11926
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -10,6 +10,13 @@ cache: ...@@ -10,6 +10,13 @@ cache:
paths: paths:
- "$CI_PROJECT_DIR/pip-cache" - "$CI_PROJECT_DIR/pip-cache"
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/pip-cache"
cache:
paths:
- "$CI_PROJECT_DIR/pip-cache"
test: test:
script: script:
- pip install -e . - pip install -e .
......
Makefile 0 → 100644
.PHONY: dist clean upload tag help
help:
@echo "See Makefile itself for help"
clean:
rm -r hektor.egg-info dist build __pycache__
dist:
pip install -U setuptools pip wheel && \
python setup.py bdist_wheel --universal
upload: dist
twine upload dist/*
tag:
git tag $(python setup.py --version)
bin/hektor 100644 → 100755
File mode changed from 100644 to 100755
...@@ -4,7 +4,7 @@ from setuptools import setup ...@@ -4,7 +4,7 @@ from setuptools import setup
setup( setup(
name='hektor', name='hektor',
version='0.2', version='0.2.2',
description='A QTI-XML/XLS to JSON converter for humans', description='A QTI-XML/XLS to JSON converter for humans',
author='Jan Maximilian Michal', author='Jan Maximilian Michal',
author_email='mail@janmax.org', author_email='mail@janmax.org',
...@@ -14,5 +14,5 @@ setup( ...@@ -14,5 +14,5 @@ setup(
install_requires=["lxml~=4.1.1", install_requires=["lxml~=4.1.1",
"xlrd~=1.1.0", "xlrd~=1.1.0",
"xkcdpass~=1.16.0"], "xkcdpass~=1.16.0"],
py_modules=['hektor'] py_modules=['hektor', 'lib']
) )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment