-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 901 Bytes
/
setup.py
File metadata and controls
37 lines (35 loc) · 901 Bytes
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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="stream_benchmark",
version="1.0",
description="Stream Benchmark",
author="Iordanis Fostiropoulos",
author_email="mail@iordanis.me",
url="https://iordanis.me/",
python_requires=">3.10",
long_description=open("README.md").read(),
packages=find_packages(),
zip_safe=False,
install_requires=[
"torch==2.0.0",
"torchvision==0.15.1",
"numpy==1.24.2",
"ray==2.3.1",
"setproctitle==1.3.2",
"quadprog==0.1.11",
"pandas==2.0.0",
"tabulate==0.9.0",
"autods==1.0",
],
extras_require={
"dev": [
"mypy==1.2.0",
"pytest==7.3.0",
"pylint==2.17.2",
"flake8==6.0.0",
"black==23.3.0",
"types-requests==2.28.11.17",
],
},
)