Commit edc5f33f authored by Mickaël Desfrênes's avatar Mickaël Desfrênes
Browse files

add poetry, remove CI

parent bd6b3fdf
Loading
Loading
Loading
Loading

.gitlab-ci.yml

deleted100644 → 0
+0 −10
Original line number Diff line number Diff line
build-package:
  stage: deploy
  image: python:3.9
  script:
    - cat $PYPIRC > /tmp/.pypirc
    - pip install twine
    - python setup.py sdist
    - twine upload --skip-existing dist/* --config-file /tmp/.pypirc
  only:
    - tags

.pre-commit-config.yaml

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
repos:
-   repo: https://github.com/psf/black
    rev: 22.3.0
    hooks:
    - id: black
      language_version: python3.9
 No newline at end of file

MANIFEST.in

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
recursive-include circe/static *.css *.js *.html
 No newline at end of file

Makefile

deleted100644 → 0
+0 −16
Original line number Diff line number Diff line
venv:
	python3 -m venv venv && . ./venv/bin/activate && pip install --upgrade pip && pip install -r requirements.txt && pre-commit install
install:
	python setup.py install
clean:
	rm -rf dist
	rm -rf build
	rm -rf circe/__pycache__/
	rm -rf circe_CERTIC.egg-info/
dist: clean
	python setup.py sdist
pypi: dist
	python setup.py sdist
	twine upload --skip-existing dist/*
test:
	pytest test.py

poetry.lock

0 → 100644
+631 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading