Skip to content
Snippets Groups Projects
Commit 0e27f3ca authored by Duchateau Fabien's avatar Duchateau Fabien
Browse files

added dist/ and config files updated

parent 07754440
No related branches found
No related tags found
No related merge requests found
# pour Mac
*.DS_Store
# pour Pycharm, python
.idea
*.pyc
__pycache__
venv/
File moved
File added
File added
# poetry add package # add a dependency package to be downloaded on remote repo (pipy)
# poetry add mongiris --path ../mongiris/dist/mongiris-0.16-py3-none-any.whl # add local dependency
# poetry build -vv # build source dist (sdist) and python wheel (wheel), option -v verbose
# poetry config repositories.git-mongiris https://gitlab.liris.cnrs.fr/fduchate/mongiris.git # add a private repo
# poetry config http-basic.git-mongiris fduchate # config username/password for local repo
# poetry publish --repository git-mongiris --username fduchate # publish package on private repo
# poetry add mongiris --git https://gitlab.liris.cnrs.fr/fduchate/mongiris.git # add a dependency from a git repo
# poetry install # install dependencies and package ?
# pip install mongiris # install package
[tool.poetry] [tool.poetry]
name = "mongiris" name = "mongiris"
version = "0.17" version = "0.18"
description = "This package is an interface for querying INSEE IRIS stored as documents in MongoDB. Requires loading the IRIS files into MongoDB prior to using this package." description = "This package is an interface for querying INSEE IRIS stored as documents in MongoDB. Requires loading the IRIS files into MongoDB prior to using this package."
authors = ["Duchateau Fabien <fabien.duchateau@univ-lyon1.fr>"] authors = ["Duchateau Fabien <fabien.duchateau@univ-lyon1.fr>"]
license = "GPL-3.0" license = "GPL-3.0"
keywords = ["MongoDB", "INSEE", "IRIS"] keywords = ["MongoDB", "INSEE", "IRIS"]
homepage = "" homepage = ""
repository = "https://gitlab.liris.cnrs.fr/fduchate/mongiris.git" #repository = "https://gitlab.liris.cnrs.fr/fduchate/mongiris"
readme = 'README.md'
#include = ["vizliris/static/*", "vizliris/templates/*"] # "vizliris/data/*", #include = ["mongiris/data/*", "vizliris/templates/*"] # "vizliris/data/*",
exclude = ["mongiris/data/*"] # only from home
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.6" python = "^3.6"
......
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