-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (40 loc) · 1.48 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
from setuptools import setup, find_packages
setup(
name='check_your_heuristic',
version='0.0.2',
license='MIT',
description='Small library which aim is to check your dataset for being solved by simple heuristics. Multilingual!',
author='Tatiana Iazykova, Olga Bystrova, Denis Kapelyushnik',
author_email='[email protected]',
keywords=['heuristics', 'rule-based', 'language models', 'natural language understanding', 'nlp'],
packages=find_packages(),
entry_points={
'console_scripts': [
'run-base-case = check_your_heuristic.main:base_case',
'run-multirc-case = check_your_heuristic.main:multirc_case',
'run-record-case = check_your_heuristic.main:record_case',
'run-wordincontext-case = check_your_heuristic.main:wordincontext_case',
],
},
install_requires=[
'numpy>=1.19.0',
'pandas>=1.1.5',
'scikit-learn>=0.24.2',
'pymorphy2>=0.9.1',
'pyyaml',
'nptyping>=1.4.4',
'parameterized>=0.8.1',
'openpyxl>=3.0.9',
'matplotlib>=3.4.3',
'seaborn>=0.11.0'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)