-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·39 lines (35 loc) · 1.03 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Sep 8 19:06:05 2021
@author: af1tang
"""
from setuptools import setup, find_packages
setup(
name = "convogym",
version = "0.1.2",
url = "https://github.com/af1tang/convogym",
author = "Fengyi (Andy) Tang",
author_email = "af1tang2@gmail.com",
description = """
A gym environment to train conversational agents for custom tasks through
active learning and self-play.
""",
long_description = open('README.rst').read(),
packages = ['convogym', 'convogym.utils', 'convogym.test'],
package_data = {'convogym': ['data/personachat.csv','data/train_personas.csv', 'data/test_personas.csv']},
install_require = [
"pytorch==1.4.0",
"numpy>=1.20.2",
"scipy>=1.6.2",
"pandas>=1.2.4",
"transformers==4.10.0",
"dotenv",
"python-dotenv",
"tqdm",
],
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
)