-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (32 loc) · 907 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
33
34
35
36
37
[tool.poetry]
name = "mixpanel_delete_profiles"
version = "0.1.0"
description = "Programatically delete Mixpanel user profiles to avoid overage charges."
authors = ["Todd Birchard <toddbirchard@gmail.com>"]
maintainers = ["Todd Birchard <toddbirchard@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/toddbirchard/mixpanel-delete-profiles/"
repository = "https://github.com/toddbirchard/mixpanel-delete-profiles/"
keywords = [
"Mixpanel",
"Analytics",
"Automation",
"Python",
"Scripting"
]
[tool.poetry.dependencies]
python = "^3.8"
pandas="*"
mixpanel = "*"
loguru = "*"
python-dotenv = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
run = "main:script"
[tool.poetry.urls]
issues = "https://github.com/toddbirchard/mixpanel-delete-profiles/issues"