generated from ajparsons/python-poetry-auto-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 1.14 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "mysoc-mailchimp"
version = "0.1.0"
description = "CLI for common mailchimp functions"
authors = ["mySociety <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/mysociety/mysoc-mailchimp"
repository = "https://github.com/mysociety/mysoc-mailchimp"
include = [
"LICENSE.md",
]
[tool.poetry.scripts]
msmc = 'mysoc_mailchimp.__main__:main'
[tool.poetry_bumpversion.file."src/mysoc_mailchimp/__init__.py"]
[tool.poetry.dependencies]
python = "^3.8"
mailchimp-marketing = {git = "https://github.com/mailchimp/mailchimp-marketing-python.git"}
click = "^8.1.3"
rich-click = "^1.6.1"
pandas = "^2.0.1"
bs4 = "^0.0.1"
trogon = "^0.4.0"
python-unsplash = {git = "https://github.com/ajparsons/python-unsplash"}
wordpress-api = "^1.2.9"
ruamel-yaml = "^0.17.32"
google-api-core = "^2.11.1"
google-api-python-client = "^2.93.0"
pandoc = "^2.3"
pillow = "^10.0.0"
mammoth = "^1.6.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
pyright = "^1.1"
toml = "^0.10.2"
ruff = "^0.6.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"