-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (40 loc) · 1.32 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
[tool.poetry]
name = "dj-currencies"
version = "1.1.0"
description = "A reusable Django app that integrates https://openexchangerates.org/"
authors = ["Lihan <[email protected]>"]
license = "MIT"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Framework :: Django :: 3.0',
'Framework :: Django :: 4.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
keywords = ["currency", "openexchangerates", "django"]
documentation = "https://dj-currencies.readthedocs.io"
repository = "https://github.com/CoverGenius/dj-currencies"
homepage = "https://github.com/CoverGenius/dj-currencies"
readme = "README.rst"
maintainers = [
"Lihan Li <[email protected]>",
"Nathan Chan <[email protected]>",
"Artem Kolesnikov <[email protected]>",
]
[tool.poetry.dependencies]
python = "^3.8"
psycopg2-binary = "^2.7||^3.0"
django = "^3.2||^4.0"
[tool.poetry.dev-dependencies]
factory-boy = "^3.2.1"
mock = "^5.0.1"
pre-commit = "^2.21.0"
bump2version = "^1.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"