diff options
| author | Max Nanis | 2026-03-06 16:49:46 -0500 |
|---|---|---|
| committer | Max Nanis | 2026-03-06 16:49:46 -0500 |
| commit | 91d040211a4ed6e4157896256a762d3854777b5e (patch) | |
| tree | cd95922ea4257dc8d3f4e4cbe8534474709a20dc /pyproject.toml | |
| download | generalresearch-91d040211a4ed6e4157896256a762d3854777b5e.tar.gz generalresearch-91d040211a4ed6e4157896256a762d3854777b5e.zip | |
Initial commitv3.3.4
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..8039ae1 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,57 @@ +[build-system] +requires = ["setuptools>=64", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "generalresearch" +version = "3.3.4" +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", + "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"] + |
