Skip to content

Commit

Permalink
Fix entry points - packages (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelotrevisani authored Feb 27, 2020
1 parent 53d391b commit f6aa442
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from setuptools import setup
from setuptools import find_packages, setup

setup(
name="grayskull",
packages=["grayskull", "grayskull.base", "grayskull.pypi"],
packages=find_packages(),
entry_points={"console_scripts": ["grayskull = grayskull.__main__:main"]},
use_scm_version={"write_to": "grayskull/_version.py"},
setup_requires=["setuptools-scm", "setuptools>=30.3.0"],
Expand Down

0 comments on commit f6aa442

Please sign in to comment.