-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (43 loc) · 1.04 KB
/
setup.py
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
# -*- coding: utf-8 -*-
from setuptools import setup
package_dir = {"": "src"}
packages = ["tscbench"]
package_data = {"": ["*"]}
install_requires = [
"transformers",
"torch",
"tqdm",
"jsonlines",
"numpy",
"loguru",
"click",
"requests",
"ipython",
"pytorch_lightning",
"names_generator",
"scikit_learn",
"optuna",
"dateparser",
"tensorboard",
]
dependency_links = []
entry_points = {"console_scripts": ["tscbench = tscbench.cli:cli"]}
setup_kwargs = {
"name": "TscBench",
"version": "0.1.0",
"description": "",
"long_description": "# TSC benchmark package",
"author": "Evan Dufraisse",
"author_email": "[email protected]",
"maintainer": "None",
"maintainer_email": "None",
"url": "None",
"package_dir": package_dir,
"packages": packages,
"package_data": package_data,
"install_requires": install_requires,
"entry_points": entry_points,
"dependency_links": dependency_links,
"python_requires": ">=3.7",
}
setup(**setup_kwargs)