| author | ymh <ymh.work@gmail.com> |
| Fri, 15 Nov 2024 01:29:53 +0100 | |
| changeset 1575 | ce1d5b0d1479 |
| parent 1557 | 7c67caaafdeb |
| permissions | -rw-r--r-- |
|
1522
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
1 |
[tool.poetry] |
|
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
2 |
name = "script" |
|
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
3 |
version = "0.1.0" |
|
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
4 |
description = "" |
|
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
5 |
authors = ["Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>"] |
|
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
6 |
|
|
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
7 |
[tool.poetry.dependencies] |
| 1557 | 8 |
python = "^3.10" |
|
1522
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
9 |
iri_tweet = { path = './lib/iri_tweet' } |
| 1557 | 10 |
astroid = "^2.12.13" |
|
1522
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
11 |
blessings = "^1.7" |
|
1538
4e5ee8e79e7f
add command to export zoom chat files as annotation
ymh <ymh.work@gmail.com>
parents:
1522
diff
changeset
|
12 |
certifi = "*" |
| 1557 | 13 |
chardet = "^5.1.0" |
14 |
cssselect = "^1.2.0" |
|
15 |
docutils = "~0.19" |
|
16 |
idna = "^3.4" |
|
17 |
isort = "^5.11.4" |
|
18 |
lazy-object-proxy = "^1.8" |
|
|
1522
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
19 |
lockfile = "^0.12.2" |
| 1557 | 20 |
lxml = "^4.9.2" |
21 |
mccabe = "^0.7.0" |
|
22 |
oauthlib = "^3.2.2" |
|
23 |
pylint = "^2.15.9" |
|
24 |
pyquery = "^1.4.3" |
|
25 |
python-daemon = "^2.3.2" |
|
26 |
python-dateutil = "^2.8.2" |
|
27 |
requests = "^2.28.1" |
|
28 |
requests-oauthlib = "^1.3.1" |
|
29 |
six = "^1.16.0" |
|
30 |
sqlalchemy = "^1.4.45" |
|
31 |
twitter = "^1.19.6" |
|
|
1522
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
32 |
twitter-text = "^3.0" |
| 1557 | 33 |
typed-ast = "^1.5.4" |
34 |
urllib3 = "^1.26.13" |
|
35 |
wrapt = "^1.14.1" |
|
36 |
poetry = "^1.3.1" |
|
37 |
mastodon-py = "^1.8.0" |
|
|
1522
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
38 |
|
|
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
39 |
|
|
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
40 |
[tool.poetry.dev-dependencies] |
| 1557 | 41 |
fissix = "^21.11.13" |
42 |
# dephell = {extras = ["full"], version = "^0.8.3"} |
|
43 |
||
44 |
[tool.poetry.group.dev.dependencies] |
|
45 |
pylance = "^0.2.8" |
|
46 |
black = "^22.12.0" |
|
47 |
pylint = "^2.15.9" |
|
|
1522
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
48 |
|
|
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
49 |
[build-system] |
|
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
50 |
requires = ["poetry>=0.12"] |
|
3ad95f783499
Migrate to poetry to manage the local venv
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
51 |
build-backend = "poetry.masonry.api" |