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
51
52
53
|
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "generalresearch"
version = "3.3.5"
description = "Python Utilities for General Research"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"Faker",
"PyMySQL",
"psycopg",
"cachetools",
"decorator",
"limits",
"more-itertools",
"numpy",
"pandera",
"protobuf",
"pycountry",
"pydantic-extra-types",
"pydantic-settings",
"pydantic[email]",
"pytest",
"pylibmc",
"pymemcache",
"redis",
"requests",
"scipy",
"sentry-sdk",
"slackclient",
"tldextract",
"ua-parser",
"user-agents",
"wrapt",
]
[project.optional-dependencies]
django = ["Django>=5.2", "psycopg>=3.1"]
[tool.setuptools.packages.find]
where = ["."]
include = ["generalresearch", "generalresearch.*", "test_utils", "test_utils.*"]
[tool.setuptools.package-data]
"generalresearch" = ["locales/*.json", "resources/*.csv"]
"test_utils" = ["managers/upk/*.gz"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
|