your-first-pip-package-in-python

By okeeffed

Your-first-pip-package-in-python Alternatives

Similar projects and alternatives to your-first-pip-package-in-python

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better your-first-pip-package-in-python alternative or higher similarity.

your-first-pip-package-in-python reviews and mentions

Posts with mentions or reviews of your-first-pip-package-in-python. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-09-22.
  • Semantic Versioning In Python With Git Hooks
    4 projects | dev.to | 22 Sep 2021
    import setuptools import toml from os.path import join, dirname, abspath pyproject_path = join(dirname(abspath("__file__")), '../pyproject.toml') file = open(pyproject_path, "r") toml_str = file.read() parsed_toml = toml.loads(toml_str) with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="demo_pip_math", version=parsed_toml['tool']['commitizen']['version'], author="Dennis O'Keeffe", author_email="[email protected]", description="Demo your first Pip package.", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/okeeffed/your-first-pip-package-in-python", packages=setuptools.find_packages(), classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], python_requires='>=3.6', keywords='pip-demo math', project_urls={ 'Homepage': 'https://github.com/okeeffed/your-first-pip-package-in-python', }, )

Stats

Basic your-first-pip-package-in-python repo stats
1
3
1.8
over 2 years ago

okeeffed/your-first-pip-package-in-python is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of your-first-pip-package-in-python is Python.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com