-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
39 lines (35 loc) · 796 Bytes
/
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
from setuptools import find_packages, setup
with open("README.md") as readme_file:
readme = readme_file.read()
requirements = [
"numpy",
"openai",
"pandas",
"torch",
"transformers",
"accelerate",
]
test_requirements = [
"mypy",
"lxml",
"tqdm-stubs",
"pylint",
"pylint-json2html",
"pylint-exit",
"pytest",
"pytest-html",
"coverage",
]
setup(
name="probsem",
version="0.1.0",
description="probabilistic semantic parsing via program synthesis",
long_description=readme,
author="Benjamin Lipkin",
author_email="[email protected]",
license="MIT",
packages=find_packages(where="probsem"),
install_requires=requirements,
extras_require={"test": test_requirements},
python_requires=">=3.10",
)