-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
32 lines (30 loc) · 998 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "django-phrase"
version = "2.1.0"
authors = [
{ name="Phrase", email="info@phrase.com" },
]
description = "Connect your Django apps to Phrase with the powerful in-context-translation solution."
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Localization",
]
dependencies = [
"django",
"six == 1.16.0",
]
[project.urls]
"Homepage" = "https://github.com/phrase/django-phrase"
"Bug Tracker" = "https://github.com/phrase/django-phrase/issues"