File size: 1,753 Bytes
e3e058f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
50
51
52
53
54
55
56
57
58
59
60
61
import pathlib
import setuptools
import pkg_resources


with open("README.md", "r") as fh:
    long_description = fh.read()

with pathlib.Path('requirements.txt').open() as requirements_txt:
    install_requires = [
        str(requirement)
        for requirement
        in pkg_resources.parse_requirements(requirements_txt)
    ]

setuptools.setup(
    name="python-transformer-chatbots-butyr",
    version="0.1.2",
    package_dir={"": "src"},
    packages=setuptools.find_namespace_packages(where="src"),
    author="Leonid Butyrev",
    author_email="[email protected]",
    description="A collection of transformer based chatbots.",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/butyr/python-transformer-chatbot",
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    python_requires='>=3.7',
    install_requires=[
        'certifi==2021.5.30',
        'charset-normalizer==2.0.6',
        'click==8.0.1',
        'filelock==3.1.0',
        'huggingface-hub==0.0.17',
        'idna==3.2',
        'importlib-metadata==4.8.1',
        'joblib==1.0.1',
        'numpy==1.21.2',
        'packaging==21.0',
        'Pillow==9.0.1',
        'pyparsing==2.4.7',
        'PyYAML==5.4.1',
        'regex==2021.9.24',
        'requests==2.26.0',
        'sacremoses==0.0.46',
        'six==1.16.0',
        'tokenizers==0.10.3',
        'torch==1.9.1',
        'torchaudio==0.9.1',
        'torchvision==0.10.1',
        'tqdm==4.62.3',
        'transformers==4.11.0',
        'typing-extensions==3.10.0.2',
        'urllib3==1.26.7',
        'zipp==3.5.0',
    ]
)