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

Commit

Permalink
Added 1.9 tar
Browse files Browse the repository at this point in the history
  • Loading branch information
rish-16 committed Aug 8, 2019
1 parent 5d45b91 commit ce6ac5b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 20 deletions.
Binary file added dist/gpt2_client-1.9.tar.gz
Binary file not shown.
13 changes: 7 additions & 6 deletions gpt2_client.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
Metadata-Version: 2.1
Name: gpt2-client
Version: 1.8.1
Version: 1.9
Summary: Easy-to-use Wrapper for the GPT-2 117M and 345M Transformer Models
Home-page: https://github.com/rish-16/gpt2client
Author: Rishabh Anand
Author-email: [email protected]
License: MIT
Download-URL: https://github.com/rish-16/gpt2client/archive/1.8.tar.gz
Download-URL: https://github.com/rish-16/gpt2client/archive/1.9.tar.gz
Description: <h1 align="center">gpt2-client 🤖📝</h1>

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

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

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
<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>
<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>

</center> -->
</div>

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

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

Expand Down
28 changes: 14 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@
long_description = f.read()

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

0 comments on commit ce6ac5b

Please sign in to comment.