-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
86 lines (81 loc) · 2.09 KB
/
setup.py
File metadata and controls
86 lines (81 loc) · 2.09 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
from setuptools import setup
def text_from_file(path):
with open(path, encoding="utf-8") as f:
return f.read()
test_dependencies = [
"coverage",
"isort",
"jsonschema",
"mypy",
"pytest",
"pytest-black",
"pytest-cov",
"pytest-flake8",
"types-futures",
"types-protobuf",
"types-pytz",
"types-PyYAML",
"types-requests",
"types-setuptools",
"types-six",
"types-toml",
]
extras = {
"testing": test_dependencies,
}
setup(
name="mozilla-auto-sizing",
author="Mozilla Corporation",
author_email="fx-data-dev@mozilla.org",
description="Runs automatic sample size calc",
url="https://github.com/mozilla/auto-sizing",
packages=[
"auto_sizing",
"auto_sizing.logging",
"auto_sizing.tests",
"auto_sizing.workflows",
],
package_data={
"auto_sizing.workflows": ["*.yaml"],
"auto_sizing": ["data/*", "../*.toml"],
},
install_requires=[
"attrs",
"cattrs",
"Click",
"dask[distributed]",
"db-dtypes",
"GitPython",
"google-cloud-bigquery",
"google-cloud-bigquery-storage",
"google-cloud-container",
"google-cloud-storage",
"grpcio", # https://github.com/googleapis/google-cloud-python/issues/6259
"jinja2",
"mozanalysis",
"mozilla-jetstream",
"mozilla-metric-config-parser",
"mozilla-nimbus-schemas",
"pyarrow",
"pytz",
"PyYAML",
"requests",
"smart_open[gcs]",
"statsmodels",
"toml",
],
include_package_data=True,
tests_require=test_dependencies,
extras_require=extras,
long_description=text_from_file("README.md"),
long_description_content_type="text/markdown",
python_requires=">=3.11",
entry_points="""
[console_scripts]
pensieve=auto_sizing.cli:cli
auto_sizing=auto_sizing.cli:cli
""",
# This project does not issue releases, so this number is not meaningful
# and should not need to change.
version="2023.2.0",
)