Skip to content
This repository was archived by the owner on Nov 9, 2022. It is now read-only.

Commit 8d21c08

Browse files
pallotronfacebook-github-bot
authored andcommitted
0.4 version for pypi release (#47)
Summary: This fixes #46 * changing version to 0.4 to prepare for pypi push * fixed license typo * had to add `long_description_content_type="text/markdown"` to render content better in the pypi GUI ``` pallotron@pallotron-mbp:(master) ~/projects/fbtftp $ python3 -m build ``` ``` pallotron@pallotron-mbp:(master) ~/projects/fbtftp $ python3 -m twine upload dist/* Uploading distributions to https://upload.pypi.org/legacy/ Enter your username: pallotron Enter your password: Uploading fbtftp-0.4-py3-none-any.whl 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 27.2k/27.2k [00:02<00:00, 11.3kB/s] Uploading fbtftp-0.4.tar.gz 100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 35.0k/35.0k [00:01<00:00, 25.1kB/s] View at: https://pypi.org/project/fbtftp/0.4/ [Exit code 0 @ 09:43:34] ``` Pull Request resolved: #47 Reviewed By: martelli Differential Revision: D27851016 Pulled By: pallotron fbshipit-source-id: 8dd9190c28cbd57367c4791cd5aa6da11f9f95dc
1 parent 3281edc commit 8d21c08

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,16 @@ def run_tests(self):
2929

3030
setup(
3131
name="fbtftp",
32-
version="0.2",
32+
version="0.4",
3333
description="A python3 framework to build dynamic TFTP servers",
3434
long_description=long_description,
35+
long_description_content_type="text/markdown",
3536
author="Angelo Failla",
3637
author_email="pallotron@fb.com",
3738
license="BSD",
3839
classifiers=[
3940
"Development Status :: 5 - Production/Stable",
40-
"License :: OSI Approved :: MIT icense",
41+
"License :: OSI Approved :: MIT License",
4142
"Operating System :: POSIX :: Linux",
4243
"Programming Language :: Python :: 3 :: Only",
4344
"Programming Language :: Python :: 3.5",

0 commit comments

Comments
 (0)