|
7 | 7 | long_description = f.read()
|
8 | 8 |
|
9 | 9 | 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', |
15 | 15 | long_description = long_description,
|
16 | 16 | 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'], |
22 | 22 | install_requires=[
|
23 | 23 | 'numpy',
|
24 | 24 | 'tensorflow',
|
|
29 | 29 | 'gpt_2_simple'
|
30 | 30 | ],
|
31 | 31 | 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', |
34 | 34 | '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', |
37 | 37 | 'Programming Language :: Python :: 3.4',
|
38 | 38 | 'Programming Language :: Python :: 3.5',
|
39 | 39 | 'Programming Language :: Python :: 3.6',
|
|
0 commit comments