-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (46 loc) · 1.27 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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
readme = fh.read()
setup(
name="isbiased",
version='0.0.1',
description="IsBiased: A library to measure known biases of Question answering models.",
long_description_content_type="text/markdown",
long_description=readme,
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.8"
],
author="Anonymous",
author_email="[email protected]",
python_requires=">=3.7",
license="MIT",
packages=find_packages(include=["isbiased", "isbiased.*"]),
include_package_data=True,
zip_safe=True,
install_requires=[
"datasets==2.2.1",
"ipykernel",
"ipython",
"jupyter-client",
"jupyter-core",
"matplotlib-inline",
"nltk",
"numpy",
"pandas==1.3.5",
"scikit-learn",
"scipy",
"spacy",
"torch>=1.11.0",
"transformers>=4.19.1",
"dill<0.3.5",
],
test_require=[
"pytest"
],
)