Skip to content
This repository was archived by the owner on Oct 3, 2021. It is now read-only.

Commit ce6ac5b

Browse files
committed
Added 1.9 tar
1 parent 5d45b91 commit ce6ac5b

File tree

3 files changed

+21
-20
lines changed

3 files changed

+21
-20
lines changed

dist/gpt2_client-1.9.tar.gz

11.9 KB
Binary file not shown.

gpt2_client.egg-info/PKG-INFO

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
Metadata-Version: 2.1
22
Name: gpt2-client
3-
Version: 1.8.1
3+
Version: 1.9
44
Summary: Easy-to-use Wrapper for the GPT-2 117M and 345M Transformer Models
55
Home-page: https://github.com/rish-16/gpt2client
66
Author: Rishabh Anand
77
Author-email: [email protected]
88
License: MIT
9-
Download-URL: https://github.com/rish-16/gpt2client/archive/1.8.tar.gz
9+
Download-URL: https://github.com/rish-16/gpt2client/archive/1.9.tar.gz
1010
Description: <h1 align="center">gpt2-client 🤖📝</h1>
1111

1212
<p align="center">Easy-to-use Wrapper for GPT-2 117M and 345M Transformer Models</p>
1313

14-
<!-- <center>
14+
<div align="center" style="display: flex;justify-content:space-evenly;width: 250px;margin: 0 auto;">
1515

16-
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
16+
<p align="center"><a style="margin: 0 10px" href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-yellow.svg"></a></p>
17+
<p align="center"><a style="margin: 0 10px" href="https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg"></a></p>
1718

18-
</center> -->
19+
</div>
1920

20-
<img src="https://github.com/rish-16/gpt2client/raw/master/assets/demo.png" style="width: 80%;" />
21+
<div><img src="https://github.com/rish-16/gpt2client/raw/master/assets/demo.png" /></div>
2122

2223
<p align="center"><strong>Made by Rishabh Anand • <a href="https://rish-16.github.io">https://rish-16.github.io</a></strong></p>
2324

setup.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@
77
long_description = f.read()
88

99
setup(
10-
name = 'gpt2_client', # How you named your package folder (MyLib)
11-
packages = ['gpt2_client'], # Chose the same as "name"
12-
version = '1.8.1', # Start with a small number and increase it with every change you make
13-
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
14-
description = 'Easy-to-use Wrapper for the GPT-2 117M and 345M Transformer Models', # Give a short description about your library
10+
name = 'gpt2_client',
11+
packages = ['gpt2_client'],
12+
version = '1.9',
13+
license='MIT',
14+
description = 'Easy-to-use Wrapper for the GPT-2 117M and 345M Transformer Models',
1515
long_description = long_description,
1616
long_description_content_type = 'text/markdown',
17-
author = 'Rishabh Anand', # Type in your name
18-
author_email = '[email protected]', # Type in your E-Mail
19-
url = 'https://github.com/rish-16/gpt2client', # Provide either the link to your github or to your website
20-
download_url = 'https://github.com/rish-16/gpt2client/archive/1.8.tar.gz', # I explain this later on
21-
keywords = ['gpt-2', 'wrapper', 'transformer', 'machine learning', 'openai', 'text generation'], # Keywords that define your package best
17+
author = 'Rishabh Anand',
18+
author_email = '[email protected]',
19+
url = 'https://github.com/rish-16/gpt2client',
20+
download_url = 'https://github.com/rish-16/gpt2client/archive/1.9.tar.gz',
21+
keywords = ['gpt-2', 'wrapper', 'transformer', 'machine learning', 'openai', 'text generation'],
2222
install_requires=[
2323
'numpy',
2424
'tensorflow',
@@ -29,11 +29,11 @@
2929
'gpt_2_simple'
3030
],
3131
classifiers=[
32-
'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
33-
'Intended Audience :: Developers', # Define that your audience are developers
32+
'Development Status :: 4 - Beta',
33+
'Intended Audience :: Developers',
3434
'Topic :: Software Development :: Build Tools',
35-
'License :: OSI Approved :: MIT License', # Again, pick a license
36-
'Programming Language :: Python :: 3', #Specify which python versions that you want to support
35+
'License :: OSI Approved :: MIT License',
36+
'Programming Language :: Python :: 3',
3737
'Programming Language :: Python :: 3.4',
3838
'Programming Language :: Python :: 3.5',
3939
'Programming Language :: Python :: 3.6',

0 commit comments

Comments
 (0)