Skip to content

Instantly share code, notes, and snippets.

@timothyjlaurent
Created February 28, 2020 22:54
Show Gist options
  • Save timothyjlaurent/5b415a428114c4da8d99753d4381d60d to your computer and use it in GitHub Desktop.
Save timothyjlaurent/5b415a428114c4da8d99753d4381d60d to your computer and use it in GitHub Desktop.
[tool.poetry]
name = "foo"
version = "0.2.0"
description = ""
authors = ["me and him"]
packages = [
{ include = "text2struct" }
]
[[tool.poetry.source]]
name = "companyx"
url = "http://build.companyx.net:10001/simple/"
[tool.poetry.dependencies]
python = "^3.6"
attrs = "^19.1"
cattrs = "^0.9.0"
bidict = "^0.18.2"
gensim = "^3.8.0"
h5py = "^2.10.0"
jsonlines = "^1.2.0"
more-itertools = "^7.2"
python-rapidjson = "^0.8.0"
scikit-learn = "^0.21.3"
scipy = "^1.3.2"
seqeval = "^0.0.12"
spacy = "^2.2.3"
sty = {version = "^1.0-beta.1", allow-prereleases = true}
subword-nmt = "^0.3.6"
tensorflow-determinism = { version = "^0.3.0"}
tensorflow = { version = "^2.1.0"}
typing_extensions = "^3.7.4"
tabulate = "^0.8.0"
tqdm = "^4.36.0"
pandas = "^0.25.0"
beautifulsoup4 = "^4.8"
click = "^7.0"
en_core_web_sm = {url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.2.5/en_core_web_sm-2.2.5.tar.gz"}
smart_open = "^1.9.0"
pyaescrypt = "^0.4.3"
vaultconfigparser = "^1.1.0"
mlflow = "^1.6.0"
black = "^19.10b0"
ai-team-util = "^0.6.0"
kfp = "^0.2.4"
[tool.poetry.dev-dependencies]
pre-commit = "^1.20"
pytest = "^5"
pytest-cov = "^2.8.1"
hypothesis = "^4.44.2"
pytest-env = "^0.6"
moto = "^1.3.14"
jupyter = "^1.0.0"
flake8 = "^3.7.9"
[tool.black]
line-length = 99
target-version = ['py36', 'py37']
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
)/
'''
[tool.poetry.scripts]
inv-model = "text2struct.run_model:main"
inv-preprocess = "text2struct.run_preprocessing:main"
enc = "text2struct.run_encryption:main_cli"
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment