-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
42 lines (41 loc) · 1.05 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
from setuptools import setup, find_packages
setup(
name="openreview-matcher",
version="1.0",
description="OpenReview matching library",
url="https://github.com/openreview/openreview-matcher",
author="Michael Spector",
author_email="spector@cs.umass.edu",
license="MIT",
packages=["matcher"],
setup_requires=["cffi>=1.0.0"],
cffi_modules=[
"matcher/solvers/bvn_extension/bvn_extension_build.py:ffibuilder"
],
install_requires=[
"numpy==1.*",
"openreview-py",
"ortools==9.*",
"pytest==7.*",
"sortedcontainers==2.*",
"Flask==2.2.2",
"Werkzeug==2.3.7",
"flask-cors==3.*",
"cffi==1.*",
"pre-commit==2.*",
"celery==5.2.7",
"redis==3.*",
"MarkupSafe==2.*",
"gunicorn==19.*",
"importlib-metadata>=1.1.0,<4.3",
"flake8==3.8.4",
"gurobipy",
"kombu>=5.3.0,<6.0",
"psutil",
"scipy"
],
extras_require={
"full": ["flower"],
},
zip_safe=False,
)