{ "info": { "author": "Baxter Callan", "author_email": "baxcallan@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "## Hello World Baxter2\n\nThis is an example project demonstrating how to publish a python module ot PyPI.\n\n## Usage\n\n```python\n>>> say_hello()\n'Hello, World!'\n\n>>> say_hello(\"Baxter\")\n'Hello, Baxter!'\n```\n\n## License\nMIT\n\n## Some shell commands run through out the project\n\n> #### [baxter2/hello-world-baxter2 1st Commit](https://github.com/baxter2/hello-world-baxter2/tree/a3ca442830b30b72ba6354ff01bdf56d9c5d9316) | [git diff](https://github.com/baxter2/hello-world-baxter2/commit/a3ca442830b30b72ba6354ff01bdf56d9c5d9316)\n
\n[~]$ mkdir hello-world-baxter2\n\n[~]$ cd hello-world-baxter2/\n\n[hello-world-baxter2]$ python3 -m venv ~/.virtualenvs/HelloWorldBaxter2\n\n[hello-world-baxter2]$ source ~/.virtualenvs/HelloWorldBaxter2/bin/activate\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ pip list\nPackage    Version\n---------- -------\npip        18.1\nsetuptools 40.6.2\nYou are using pip version 18.1, however version 19.0.3 is available.\nYou should consider upgrading via the 'pip install --upgrade pip' command.\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ pip install --upgrade pip setuptools\nCollecting pip\n  Downloading https://files.pythonhosted.org/packages/d8/f3/413bab4ff08e1fc4828dfc59996d721917df8e8583ea85385d51125dceff/pip-19.0.3-py2.py3-none-any.whl (1.4MB)\n    100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 1.4MB 1.5MB/s\nCollecting setuptools\n  Downloading https://files.pythonhosted.org/packages/d1/6a/4b2fcefd2ea0868810e92d519dacac1ddc64a2e53ba9e3422c3b62b378a6/setuptools-40.8.0-py2.py3-none-any.whl (575kB)\n    100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 583kB 2.6MB/s\nInstalling collected packages: pip, setuptools\n  Found existing installation: pip 18.1\n    Uninstalling pip-18.1:\n      Successfully uninstalled pip-18.1\n  Found existing installation: setuptools 40.6.2\n    Uninstalling setuptools-40.6.2:\n      Successfully uninstalled setuptools-40.6.2\nSuccessfully installed pip-19.0.3 setuptools-40.8.0\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ pip list\nPackage    Version\n---------- -------\npip        19.0.3\nsetuptools 40.8.0\n
\n\n> #### [baxter2/hello-world-baxter2 3rd Commit](https://github.com/baxter2/hello-world-baxter2/tree/cf7c52fa0443ca61323fb4880ca3ae89dde0e0ff) | [git diff](https://github.com/baxter2/hello-world-baxter2/commit/cf7c52fa0443ca61323fb4880ca3ae89dde0e0ff)\n
\n(HelloWorldBaxter2) [hello-world-baxter2]$ pip install wheel\nCollecting wheel\n  Using cached https://files.pythonhosted.org/packages/96/ba/a4702cbb6a3a485239fbe9525443446203f00771af9ac000fa3ef2788201/wheel-0.33.1-py2.py3-none-any.whl\nInstalling collected packages: wheel\nSuccessfully installed wheel-0.33.1\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ pip list\nPackage    Version\n---------- -------\npip        19.0.3\nsetuptools 40.8.0\nwheel      0.33.1\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ python setup.py sdist bdist_wheel\nbunch of crap blah blah\n
\n\n> #### [baxter2/hello-world-baxter2 4th Commit](https://github.com/baxter2/hello-world-baxter2/tree/ad61058e0955637614edf4baea28432c676deab2) | [git diff](https://github.com/baxter2/hello-world-baxter2/commit/ad61058e0955637614edf4baea28432c676deab2)\n
\n(HelloWorldBaxter2) [hello-world-baxter2]$ touch .gitignore\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ git rm -r --cached build\nrm 'build/lib/hello-world.py'\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ git rm -r --cached dist\nrm 'dist/hello-world-baxter2-0.0.1.tar.gz'\nrm 'dist/hello_world_baxter2-0.0.1-py3-none-any.whl'\n
\n\n> #### [baxter2/hello-world-baxter2 5th Commit](https://github.com/baxter2/hello-world-baxter2/tree/3733b8147e4ac6d0e56ab22c6946b4937ac76e48) | [git diff](https://github.com/baxter2/hello-world-baxter2/commit/3733b8147e4ac6d0e56ab22c6946b4937ac76e48)\n
\n(HelloWorldBaxter2) [hello-world-baxter2]$ git rm -r --cached src/hello_world_baxter2.egg-info/\nrm 'src/hello_world_baxter2.egg-info/PKG-INFO'\nrm 'src/hello_world_baxter2.egg-info/SOURCES.txt'\nrm 'src/hello_world_baxter2.egg-info/dependency_links.txt'\nrm 'src/hello_world_baxter2.egg-info/top_level.txt'\n
\n\n> #### [baxter2/hello-world-baxter2 6th Commit](https://github.com/baxter2/hello-world-baxter2/tree/8b0926a79a12e0fb0254721ae4d9ad8627ced600) | [git diff](https://github.com/baxter2/hello-world-baxter2/commit/8b0926a79a12e0fb0254721ae4d9ad8627ced600)\n
\n$ python setup.py sdist bdist_wheel\nbunch of crap blah blah\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ pip install -e .\nObtaining file:///Users/baxter2/hello-world-baxter2\nInstalling collected packages: hello-world-baxter2\n  Found existing installation: hello-world-baxter2 0.0.2\n    Uninstalling hello-world-baxter2-0.0.2:\n      Successfully uninstalled hello-world-baxter2-0.0.2\n  Running setup.py develop for hello-world-baxter2\nSuccessfully installed hello-world-baxter2\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ pip list\nPackage             Version Location\n------------------- ------- --------------------------------------\nhello-world-baxter2 0.0.2   /Users/baxter2/hello-world-baxter2/src\npip                 19.0.3\nsetuptools          40.8.0\nwheel               0.33.1\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ python\nPython 3.7.2 (default, Feb 12 2019, 08:15:36)\n[Clang 10.0.0 (clang-1000.11.45.5)] on darwin\nType \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n>>> from hello_world import say_hello\n\n>>> say_hello()\n'Hello, World!'\n\n>>> say_hello(\"Baxter\")\n'Hello, Baxter!'\n
\n\n> #### [baxter2/hello-world-baxter2 7th Commit](https://github.com/baxter2/hello-world-baxter2/tree/15af2555bdad5ca78c497f631ec42919a19dfecc) | [git diff](https://github.com/baxter2/hello-world-baxter2/commit/15af2555bdad5ca78c497f631ec42919a19dfecc)\n
\n(HelloWorldBaxter2) [hello-world-baxter2]$ git rm -r --cached src/__pycache__/\n
\n\n> #### [baxter2/hello-world-baxter2 8th Commit](https://github.com/baxter2/hello-world-baxter2/tree/da1893b589c9a4622df36b0253b36bba9f0cff91) | [git diff](https://github.com/baxter2/hello-world-baxter2/commit/da1893b589c9a4622df36b0253b36bba9f0cff91)\n
\n(HelloWorldBaxter2) [hello-world-baxter2]$ pip install pytest\nCollecting pytest\n  Downloading https://files.pythonhosted.org/packages/51/b2/2fa8e8b179c792c457c2f7800f1313bfbd34f515e3a833e6083121844c14/pytest-4.3.0-py2.py3-none-any.whl (219kB)\n    100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 225kB 2.0MB/s\nCollecting six>=1.10.0 (from pytest)\n  Downloading https://files.pythonhosted.org/packages/73/fb/00a976f728d0d1fecfe898238ce23f502a721c0ac0ecfedb80e0d88c64e9/six-1.12.0-py2.py3-none-any.whl\nRequirement already satisfied: setuptools in /Users/baxter2/.virtualenvs/HelloWorldBaxter2/lib/python3.7/site-packages (from pytest) (40.8.0)\nCollecting atomicwrites>=1.0 (from pytest)\n  Downloading https://files.pythonhosted.org/packages/52/90/6155aa926f43f2b2a22b01be7241be3bfd1ceaf7d0b3267213e8127d41f4/atomicwrites-1.3.0-py2.py3-none-any.whl\nCollecting attrs>=17.4.0 (from pytest)\n  Downloading https://files.pythonhosted.org/packages/3a/e1/5f9023cc983f1a628a8c2fd051ad19e76ff7b142a0faf329336f9a62a514/attrs-18.2.0-py2.py3-none-any.whl\nCollecting more-itertools>=4.0.0; python_version > \"2.7\" (from pytest)\n  Downloading https://files.pythonhosted.org/packages/ae/d4/d6bad4844831943dd667510947712750004525c5807711982f4ec390da2b/more_itertools-6.0.0-py3-none-any.whl (52kB)\n    100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 61kB 2.1MB/s\nCollecting pluggy>=0.7 (from pytest)\n  Downloading https://files.pythonhosted.org/packages/2d/60/f58d9e8197f911f9405bf7e02227b43a2acc2c2f1a8cbb1be5ecf6bfd0b8/pluggy-0.8.1-py2.py3-none-any.whl\nCollecting py>=1.5.0 (from pytest)\n  Downloading https://files.pythonhosted.org/packages/76/bc/394ad449851729244a97857ee14d7cba61ddb268dce3db538ba2f2ba1f0f/py-1.8.0-py2.py3-none-any.whl (83kB)\n    100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 92kB 2.3MB/s\nInstalling collected packages: six, atomicwrites, attrs, more-itertools, pluggy, py, pytest\nSuccessfully installed atomicwrites-1.3.0 attrs-18.2.0 more-itertools-6.0.0 pluggy-0.8.1 py-1.8.0 pytest-4.3.0 six-1.12.0\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ pip list\nPackage             Version Location\n------------------- ------- --------------------------------------\natomicwrites        1.3.0\nattrs               18.2.0\nhello-world-baxter2 0.0.2   /Users/baxter2/hello-world-baxter2/src\nmore-itertools      6.0.0\npip                 19.0.3\npluggy              0.8.1\npy                  1.8.0\npytest              4.3.0\nsetuptools          40.8.0\nsix                 1.12.0\nwheel               0.33.1\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ pytest\n==================================== test session starts ============================\nplatform darwin -- Python 3.7.2, pytest-4.3.0, py-1.8.0, pluggy-0.8.1\nrootdir: /Users/baxter2/hello-world-baxter2, inifile:\ncollected 2 items\n\ntest_hello_world.py ..                                                         [100%]\n\n==================================== 2 passed in 0.04 seconds =======================\n
\n\n> #### [baxter2/hello-world-baxter2 9th Commit](https://github.com/baxter2/hello-world-baxter2/tree/e3510045e0e54b315281f3a0a4684b9cf5d2f623) | [git diff](https://github.com/baxter2/hello-world-baxter2/commit/e3510045e0e54b315281f3a0a4684b9cf5d2f623)\n
\n(HelloWorldBaxter2) [hello-world-baxter2]$ pip install twine\nCollecting twine\n  Downloading https://files.pythonhosted.org/packages/28/90/59eec88c0b2ac9e47fe135959007acb93a3cc9f7146366e11fecf718dd15/twine-1.13.0-py2.py3-none-any.whl\nCollecting readme-renderer>=21.0 (from twine)\n  Downloading https://files.pythonhosted.org/packages/c3/7e/d1aae793900f36b097cbfcc5e70eef82b5b56423a6c52a36dce51fedd8f0/readme_renderer-24.0-py2.py3-none-any.whl\nCollecting requests-toolbelt!=0.9.0,>=0.8.0 (from twine)\n  Downloading https://files.pythonhosted.org/packages/60/ef/7681134338fc097acef8d9b2f8abe0458e4d87559c689a8c306d0957ece5/requests_toolbelt-0.9.1-py2.py3-none-any.whl (54kB)\n    100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 61kB 1.2MB/s\nRequirement already satisfied: setuptools>=0.7.0 in /Users/baxter2/.virtualenvs/HelloWorldBaxter2/lib/python3.7/site-packages (from twine) (40.8.0)\nCollecting requests!=2.15,!=2.16,>=2.5.0 (from twine)\n  Downloading https://files.pythonhosted.org/packages/7d/e3/20f3d364d6c8e5d2353c72a67778eb189176f08e873c9900e10c0287b84b/requests-2.21.0-py2.py3-none-any.whl (57kB)\n    100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 61kB 832kB/s\nCollecting tqdm>=4.14 (from twine)\n  Downloading https://files.pythonhosted.org/packages/6c/4b/c38b5144cf167c4f52288517436ccafefe9dc01b8d1c190e18a6b154cd4a/tqdm-4.31.1-py2.py3-none-any.whl (48kB)\n    100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 51kB 1.5MB/s\nCollecting pkginfo>=1.4.2 (from twine)\n  Downloading https://files.pythonhosted.org/packages/e6/d5/451b913307b478c49eb29084916639dc53a88489b993530fed0a66bab8b9/pkginfo-1.5.0.1-py2.py3-none-any.whl\nCollecting docutils>=0.13.1 (from readme-renderer>=21.0->twine)\n  Downloading https://files.pythonhosted.org/packages/36/fa/08e9e6e0e3cbd1d362c3bbee8d01d0aedb2155c4ac112b19ef3cae8eed8d/docutils-0.14-py3-none-any.whl (543kB)\n    100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 552kB 956kB/s\nRequirement already satisfied: six in /Users/baxter2/.virtualenvs/HelloWorldBaxter2/lib/python3.7/site-packages (from readme-renderer>=21.0->twine) (1.12.0)\nCollecting bleach>=2.1.0 (from readme-renderer>=21.0->twine)\n  Downloading https://files.pythonhosted.org/packages/ab/05/27e1466475e816d3001efb6e0a85a819be17411420494a1e602c36f8299d/bleach-3.1.0-py2.py3-none-any.whl (157kB)\n    100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 163kB 1.2MB/s\nCollecting Pygments (from readme-renderer>=21.0->twine)\n  Downloading https://files.pythonhosted.org/packages/13/e5/6d710c9cf96c31ac82657bcfb441df328b22df8564d58d0c4cd62612674c/Pygments-2.3.1-py2.py3-none-any.whl (849kB)\n    100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 849kB 1.8MB/s\nCollecting certifi>=2017.4.17 (from requests!=2.15,!=2.16,>=2.5.0->twine)\n  Using cached https://files.pythonhosted.org/packages/9f/e0/accfc1b56b57e9750eba272e24c4dddeac86852c2bebd1236674d7887e8a/certifi-2018.11.29-py2.py3-none-any.whl\nCollecting idna<2.9,>=2.5 (from requests!=2.15,!=2.16,>=2.5.0->twine)\n  Downloading https://files.pythonhosted.org/packages/14/2c/cd551d81dbe15200be1cf41cd03869a46fe7226e7450af7a6545bfc474c9/idna-2.8-py2.py3-none-any.whl (58kB)\n    100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 61kB 1.5MB/s\nCollecting chardet<3.1.0,>=3.0.2 (from requests!=2.15,!=2.16,>=2.5.0->twine)\n  Downloading https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl (133kB)\n    100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 143kB 2.4MB/s\nCollecting urllib3<1.25,>=1.21.1 (from requests!=2.15,!=2.16,>=2.5.0->twine)\n  Downloading https://files.pythonhosted.org/packages/62/00/ee1d7de624db8ba7090d1226aebefab96a2c71cd5cfa7629d6ad3f61b79e/urllib3-1.24.1-py2.py3-none-any.whl (118kB)\n    100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 122kB 1.7MB/s\nCollecting webencodings (from bleach>=2.1.0->readme-renderer>=21.0->twine)\n  Downloading https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl\nInstalling collected packages: docutils, webencodings, bleach, Pygments, readme-renderer, certifi, idna, chardet, urllib3, requests, requests-toolbelt, tqdm, pkginfo, twine\nSuccessfully installed Pygments-2.3.1 bleach-3.1.0 certifi-2018.11.29 chardet-3.0.4 docutils-0.14 idna-2.8 pkginfo-1.5.0.1 readme-renderer-24.0 requests-2.21.0 requests-toolbelt-0.9.1 tqdm-4.31.1 twine-1.13.0 urllib3-1.24.1 webencodings-0.5.1\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ pip list\nPackage             Version    Location\n------------------- ---------- --------------------------------------\natomicwrites        1.3.0\nattrs               18.2.0\nbleach              3.1.0\ncertifi             2018.11.29\nchardet             3.0.4\ndocutils            0.14\nhello-world-baxter2 0.0.2      /Users/baxter2/hello-world-baxter2/src\nidna                2.8\nmore-itertools      6.0.0\npip                 19.0.3\npkginfo             1.5.0.1\npluggy              0.8.1\npy                  1.8.0\nPygments            2.3.1\npytest              4.3.0\nreadme-renderer     24.0\nrequests            2.21.0\nrequests-toolbelt   0.9.1\nsetuptools          40.8.0\nsix                 1.12.0\ntqdm                4.31.1\ntwine               1.13.0\nurllib3             1.24.1\nwebencodings        0.5.1\nwheel               0.33.1\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*\nEnter your username: baxter2\nEnter your password:\nUploading distributions to https://test.pypi.org/legacy/\nUploading hello_world_baxter2-0.0.1-py3-none-any.whl\n100%|\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 10.8k/10.8k [00:02<00:00, 5.15kB/s]\nNOTE: Try --verbose to see response content.\nHTTPError: 400 Client Error: Invalid value for classifiers. Error: 'Programming Language :: Python :: 3,7' is not a valid choice for this field for url: https://test.pypi.org/legacy/\n
\n\n> #### [baxter2/hello-world-baxter2 11th Commit](https://github.com/baxter2/hello-world-baxter2/tree/24a10a640fe66ea953d2c0614b17a008874b0620) | [git diff](https://github.com/baxter2/hello-world-baxter2/commit/24a10a640fe66ea953d2c0614b17a008874b0620)\n
\n(HelloWorldBaxter2) [hello-world-baxter2]$ pip install -e .\nObtaining file:///Users/baxter2/hello-world-baxter2\nInstalling collected packages: hello-world-baxter2\n  Found existing installation: hello-world-baxter2 0.0.2\n    Uninstalling hello-world-baxter2-0.0.2:\n      Successfully uninstalled hello-world-baxter2-0.0.2\n  Running setup.py develop for hello-world-baxter2\nSuccessfully installed hello-world-baxter2\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*\nEnter your username: baxter2\nEnter your password:\nUploading distributions to https://test.pypi.org/legacy/\nUploading hello_world_baxter2-0.0.1-py3-none-any.whl\n100%|\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 10.8k/10.8k [00:02<00:00, 5.00kB/s]\nNOTE: Try --verbose to see response content.\nHTTPError: 400 Client Error: Invalid value for classifiers. Error: 'Programming Language :: Python :: 3,7' is not a valid choice for this field for url: https://test.pypi.org/legacy/\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ python setup.py sdist bdist_wheel\nbunch of crap blah blah\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ pip install -e .\nObtaining file:///Users/baxter2/hello-world-baxter2\nInstalling collected packages: hello-world-baxter2\n  Found existing installation: hello-world-baxter2 0.0.2\n    Uninstalling hello-world-baxter2-0.0.2:\n      Successfully uninstalled hello-world-baxter2-0.0.2\n  Running setup.py develop for hello-world-baxter2\nSuccessfully installed hello-world-baxter2\n\n(HelloWorldBaxter2) [hello-world-baxter2]$ python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*\nEnter your username: baxter2\nEnter your password:\nUploading distributions to https://test.pypi.org/legacy/\nUploading hello_world_baxter2-0.0.1-py3-none-any.whl\n100%|\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 10.8k/10.8k [00:01<00:00, 6.40kB/s]\nNOTE: Try --verbose to see response content.\nHTTPError: 400 Client Error: Invalid value for classifiers. Error: 'Programming Language :: Python :: 3,7' is not a valid choice for this field for url: https://test.pypi.org/legacy/\n
\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/baxter2/hello-world-baxter2", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "hello-world-baxter2", "package_url": "https://pypi.org/project/hello-world-baxter2/", "platform": "", "project_url": "https://pypi.org/project/hello-world-baxter2/", "project_urls": { "Homepage": "https://github.com/baxter2/hello-world-baxter2" }, "release_url": "https://pypi.org/project/hello-world-baxter2/0.0.4/", "requires_dist": null, "requires_python": "", "summary": "", "version": "0.0.4" }, "last_serial": 4857971, "releases": { "0.0.4": [ { "comment_text": "", "digests": { "md5": "2bf850a226f0ace7cc422948fc1b5610", "sha256": "e242b7e98391add089f7429d592cb9a9c3f3adf0ebaddaba7ae9a9935ef45199" }, "downloads": -1, "filename": "hello_world_baxter2-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "2bf850a226f0ace7cc422948fc1b5610", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6664, "upload_time": "2019-02-23T11:22:59", "url": "https://files.pythonhosted.org/packages/99/89/35aa83eae37fe1696ae7f4055145a380f489542147d80a75b10994d3e978/hello_world_baxter2-0.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5da818f00030d4bb3d8ecb7b4ee8ac39", "sha256": "884fce80b680a7ba6b112f838ee5b4c922fb359b6a388b0fd84037e1c49f0182" }, "downloads": -1, "filename": "hello-world-baxter2-0.0.4.tar.gz", "has_sig": false, "md5_digest": "5da818f00030d4bb3d8ecb7b4ee8ac39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7359, "upload_time": "2019-02-23T11:23:02", "url": "https://files.pythonhosted.org/packages/11/ea/f9fe45cc7273c511425b3bc82341f7b6fa5220433b877b5a3d4ab63c3f6c/hello-world-baxter2-0.0.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2bf850a226f0ace7cc422948fc1b5610", "sha256": "e242b7e98391add089f7429d592cb9a9c3f3adf0ebaddaba7ae9a9935ef45199" }, "downloads": -1, "filename": "hello_world_baxter2-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "2bf850a226f0ace7cc422948fc1b5610", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6664, "upload_time": "2019-02-23T11:22:59", "url": "https://files.pythonhosted.org/packages/99/89/35aa83eae37fe1696ae7f4055145a380f489542147d80a75b10994d3e978/hello_world_baxter2-0.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5da818f00030d4bb3d8ecb7b4ee8ac39", "sha256": "884fce80b680a7ba6b112f838ee5b4c922fb359b6a388b0fd84037e1c49f0182" }, "downloads": -1, "filename": "hello-world-baxter2-0.0.4.tar.gz", "has_sig": false, "md5_digest": "5da818f00030d4bb3d8ecb7b4ee8ac39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7359, "upload_time": "2019-02-23T11:23:02", "url": "https://files.pythonhosted.org/packages/11/ea/f9fe45cc7273c511425b3bc82341f7b6fa5220433b877b5a3d4ab63c3f6c/hello-world-baxter2-0.0.4.tar.gz" } ] }