-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.65 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.65 KB
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
DESCRIPTION = 'Generate code, SQL queries, product descriptions, blogs, emails, ads and more using GPT architecture. ' \
'Translate natural language to code or SQL queries with a single request to TextCortex API' \
' a.k.a Hemingwai'
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='textcortex',
version='2.0.3',
author='TextCortex AI',
author_email='dev@textcortex.com',
packages=find_packages(),
url='https://github.com/textcortex/hemingwai',
license='MIT',
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['TextCortex AI', 'gpt-2', 'gpt-3', 'gptNEO', 'generate text', 'code generation', 'text generation',
'natural language generation', 'NLP', 'hemingwai', 'transformer', 'generate copy text using AI'],
install_requires=[
"requests"
],
classifiers= [
"Development Status :: 3 - Alpha",
"Intended Audience :: Customer Service",
"Intended Audience :: Information Technology",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3"
]
)