-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (42 loc) · 1.32 KB
/
setup.py
File metadata and controls
47 lines (42 loc) · 1.32 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
import os
import setuptools
with open("README.md") as fp:
long_description = fp.read()
extras_kwargs = {}
if not os.environ.get("HOTPP_PUBLISH", False):
# PyPI doesn't support direct links.
extras_kwargs["extras_require"] = {
"downstream": ["ptls-validation @ git+https://git@github.com/dllllb/ptls-validation.git#egg=ptls-validation"]
}
setuptools.setup(
name="hotpp-benchmark",
version="0.6.7",
author="Ivan Karpukhin",
author_email="karpuhini@yandex.ru",
description="Evaluate generative event sequence models on the long horizon prediction task.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(include=["hotpp", "hotpp.*"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
install_requires=[
"datasets",
"hydra-core>=1.1.2",
"lightgbm",
"numpy>=1.23",
"pyarrow>=14.0.0",
"pymonad",
"pyspark>=3",
"pytorch-lifestream>=0.6.0",
"pytorch-lightning",
"scikit-learn>=1.3.2",
"scipy>=1.11",
"torch-linear-assignment",
"tqdm",
],
**extras_kwargs
)