|
2 | 2 |
|
3 | 3 | from setuptools import setup # pyright: reportMissingTypeStubs=false |
4 | 4 |
|
5 | | -from changedifferently.version import get_version |
| 5 | +from stackdiff.version import get_version |
6 | 6 |
|
7 | 7 | readme_path = Path(__file__).parent / "README.md" |
8 | 8 |
|
|
36 | 36 | author="Cariad Eccleston", |
37 | 37 | author_email="cariad@cariad.earth", |
38 | 38 | classifiers=classifiers, |
39 | | - description="Visualises the changes described by an Amazon Web Services CloudFormation change set", |
| 39 | + description="Visualises the changes described by an Amazon Web Services CloudFormation stack change set", |
| 40 | + entry_points={ |
| 41 | + "console_scripts": [ |
| 42 | + "stackdiff=stackdiff.__main__:cli_entry", |
| 43 | + ], |
| 44 | + }, |
40 | 45 | include_package_data=True, |
41 | 46 | license="MIT", |
42 | 47 | long_description=long_description, |
43 | 48 | long_description_content_type="text/markdown", |
44 | | - name="changedifferently", |
| 49 | + name="stackdiff", |
45 | 50 | packages=[ |
46 | | - "changedifferently", |
47 | | - "changedifferently.version", |
| 51 | + "stackdiff", |
| 52 | + "stackdiff.version", |
48 | 53 | ], |
49 | 54 | package_data={ |
50 | | - "changedifferently": ["py.typed"], |
51 | | - "changedifferently.version": ["py.typed"], |
| 55 | + "stackdiff": ["py.typed"], |
| 56 | + "stackdiff.version": ["py.typed"], |
52 | 57 | }, |
53 | 58 | python_requires=">=3.8", |
54 | | - url="https://github.com/cariad/changedifferently", |
| 59 | + url="https://github.com/cariad/stackdiff", |
55 | 60 | version=version, |
56 | 61 | ) |
0 commit comments