Here is where you say what your package does and define dependencies.
For example:
[tool.poetry]name="sample-package"version="0.0.1"description="Sample Description for your sample file"authors=["John Doe <[email protected]>"][tool.poetry.dependencies]# Updated Python versionpython="^3.6"[tool.poetry.dev-dependencies]pytest="^3.0"[build-system]requires=["poetry>=0.12"]build-backend="poetry.masonry.api"
X. Write Your Package
There isn't a reason to publish an empty package, make sure it does something.
3. Publish it!
After your package works, all test pass, etc., you want to make it available to the world, lets build: