forked from Doist/bitmapist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (47 loc) · 1.36 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
46
47
48
49
50
[tool.poetry]
name = "bitmapist"
version = "3.112"
description="Implements a powerful analytics library using Redis bitmaps."
authors = [
"Amir Salihefendic <[email protected]>",
"Doist Developers <[email protected]>",
]
license="BSD"
readme = "README.md"
repository = "https://github.com/Doist/bitmapist"
keywords=[ "redis", "bitmap", "analytics", "bitmaps", "realtime", "cohort", ]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages=[ { include = "bitmapist" } ]
exclude = ['tests/']
include = [
'AUTHORS',
'README.md',
'static/bitmapist.png',
'static/bitmapist.svg',
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
redis = ">=2.10,<5.0"
python-dateutil = "*"
future = ">=0.14.3,<0.19.0"
Mako= "^1.0.4"
[tool.poetry.dev-dependencies]
pytest-runner = "*"
pytest = "*"
pre-commit = "*"
tox = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"