loganthomas / turkey-bowl

Thanksgiving fantasy football draft and scoring code
https://www.loganthomas.dev/turkey_bowl/
MIT License
0 stars 0 forks source link

[ENH] Consider renaming command line entry point name #53

Closed loganthomas closed 2 years ago

loganthomas commented 3 years ago

setup(

    ...

    classifiers=[
        "Development Status :: 3 - Alpha",
        "Environment :: Console",
        "Environment :: MacOS X",
        "License :: OSI Approved :: MIT License",
        "Natural Language :: English",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.7",
    ],
    python_requires=">=3.7",
    entry_points={
        "console_scripts": ["turkey_bowl = turkey_bowl.turkey_bowl_runner:main"]
    },
)

Should this be "turkey-bowl = turkey_bowl.turkey_bowl_runner:main"?

loganthomas commented 2 years ago

Closed via https://github.com/loganthomas/turkey-bowl/pull/81