Mercurial > silorider
annotate Pipfile @ 60:b7da3d97ea99
Add profile URL handlers
Silos register these handlers so that everybody knows if a hyperlink is
a mention to another user on a particular social network. If any handler
matches, silos not related to that social media will skip that link.
It's possible than in rare cases we want that link everywhere, but so
far I haven't needed it, compared to all the times I didn't want these
links.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sat, 28 Oct 2023 11:57:04 -0700 |
parents | c5f73ebb43a5 |
children |
rev | line source |
---|---|
0 | 1 [[source]] |
2 | |
3 url = "https://pypi.python.org/simple" | |
4 verify_ssl = true | |
5 name = "pypi" | |
6 | |
7 | |
8 [packages] | |
9 | |
10 "mastodon.py" = "*" | |
11 coloredlogs = "*" | |
36
8e8541ef85b7
Add --until argument to the process command
Ludovic Chabant <ludovic@chabant.com>
parents:
19
diff
changeset
|
12 dateparser = "*" |
39
c5f73ebb43a5
Replace python-twitter with tweepy to use Twitter's V2 API
Ludovic Chabant <ludovic@chabant.com>
parents:
36
diff
changeset
|
13 mf2py = "*" |
c5f73ebb43a5
Replace python-twitter with tweepy to use Twitter's V2 API
Ludovic Chabant <ludovic@chabant.com>
parents:
36
diff
changeset
|
14 mf2util = "*" |
0 | 15 python-dateutil = "*" |
19 | 16 ronkyuu = "*" |
39
c5f73ebb43a5
Replace python-twitter with tweepy to use Twitter's V2 API
Ludovic Chabant <ludovic@chabant.com>
parents:
36
diff
changeset
|
17 tweepy = "*" |
0 | 18 |
19 | |
20 [dev-packages] | |
21 | |
22 pytest = "*" | |
23 setuptools-scm = "*" | |
24 pytest-runner = "*" |