forked from minimaxir/aitextgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 862 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
from setuptools import setup
setup(
name="aitextgen",
packages=["aitextgen"], # this must be the same as the name above
version="0.5.2",
description="A robust Python tool for text-based AI training and generation using GPT-2.",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Max Woolf",
author_email="[email protected]",
url="https://github.com/minimaxir/aitextgen",
keywords=["gpt-2", "gpt2", "text generation", "ai"],
classifiers=[],
license="MIT",
entry_points={"console_scripts": ["aitextgen=aitextgen.cli:aitextgen_cli"]},
python_requires=">=3.6",
include_package_data=True,
install_requires=[
"transformers>=4.5.1",
"fire>=0.3.0",
"pytorch-lightning>=1.3.1",
"torch>=1.6.0",
],
)