Skip to content

Commit

Permalink
Remove gs entry point and add python requires (#65)
Browse files Browse the repository at this point in the history
* Remove gs entry point

* Add python_requires
  • Loading branch information
marcelotrevisani authored Feb 27, 2020
1 parent ee6d691 commit 53d391b
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,10 @@
setup(
name="grayskull",
packages=["grayskull", "grayskull.base", "grayskull.pypi"],
entry_points={
"console_scripts": [
"grayskull = grayskull.__main__:main",
"gs = grayskull.__main__:main",
]
},
entry_points={"console_scripts": ["grayskull = grayskull.__main__:main"]},
use_scm_version={"write_to": "grayskull/_version.py"},
setup_requires=["setuptools-scm", "setuptools>=30.3.0"],
python_requires=">=3.7",
install_requires=[
"requests",
"ruamel.yaml >=0.15.3",
Expand Down

0 comments on commit 53d391b

Please sign in to comment.