Skip to content

Commit

Permalink
fix package name
Browse files Browse the repository at this point in the history
  • Loading branch information
Antares0982 committed May 26, 2024
1 parent 2161904 commit d52ffbb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,22 @@ def build_extensions(self):
os.rename(os.path.join(extdir, f'{ext.name}.so'), ext_fullpath)


with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name='pydotool',
name='py-dotool',
version="v1.0.4",
ext_modules=[
CMakeExtension(name='_pydotool'),
],
url='https://github.com/Antares0982/pydotool',
project_urls={
'Bug Tracker': 'https://github.com/Antares0982/pydotool/issues',
'Source Code': 'https://github.com/Antares0982/pydotool',
},
description='ydotool client implemented in Python',
long_description=long_description,
cmdclass={'build_ext': cmake_build_ext},
packages=['pydotool'], # List your Python packages
)

0 comments on commit d52ffbb

Please sign in to comment.