Skip to content

Commit e53a2fc

Browse files
committed
use poetry
1 parent e9d58c9 commit e53a2fc

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ feediverse.egg-info
33
Pipfile*
44
__pycache__
55
.config.yml.swp
6+
poetry.lock

pyproject.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[tool.poetry]
2+
name = "feediverse"
3+
version = "0.3.1"
4+
description = "Connect an RSS Feed to Mastodon"
5+
authors = ["Ed Summers <[email protected]>"]
6+
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

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)