-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 1.03 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
[tool.poetry]
name = "django-tembaimporter"
version = "0.2"
description = "A Django app for RapidPro Temba to copy content from another install"
authors = []
readme = "README.rst"
license = "Mozilla Public License 2.0"
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.0.6",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9"
]
packages = [
{ include = "tembaimporter" },
]
[tool.poetry.urls]
repository = "http://github.com/danniel/django-tembaimporter.git"
[tool.poetry.dependencies]
python = "^3.9"
django = "^4.0.6"
rapidpro-python = {git = "https://github.com/danniel/rapidpro-python.git", rev = "danniel/patch-2.8.5"}
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length=120