We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9d58c9 commit e53a2fcCopy full SHA for e53a2fc
.gitignore
@@ -3,3 +3,4 @@ feediverse.egg-info
3
Pipfile*
4
__pycache__
5
.config.yml.swp
6
+poetry.lock
pyproject.toml
@@ -0,0 +1,22 @@
1
+[tool.poetry]
2
+name = "feediverse"
+version = "0.3.1"
+description = "Connect an RSS Feed to Mastodon"
+authors = ["Ed Summers <[email protected]>"]
+license = "MIT"
7
+readme = "README.md"
8
+
9
+[tool.poetry.dependencies]
10
+python = "^3.9"
11
+beautifulsoup4 = "^4.12.3"
12
+feedparser = "^6.0.11"
13
+mastodon-py = "^1.8.1"
14
+python-dateutil = "^2.9.0.post0"
15
+pyyaml = "^6.0.1"
16
17
+[tool.poetry.scripts]
18
+feediverse = "feediverse:main"
19
20
+[build-system]
21
+requires = ["poetry-core"]
22
+build-backend = "poetry.core.masonry.api"
setup.py
0 commit comments