Skip to content

Commit

Permalink
[update] fix the name
Browse files Browse the repository at this point in the history
  • Loading branch information
NatLee committed Feb 3, 2024
1 parent c66a34a commit de317e8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[metadata]
version = attr: systeminfo.__version__
version = attr: showsys.__version__
license_files = LICENSE
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
long_description = fh.read()

setuptools.setup(
name='System Info',
name='Show System Information',
author='Nat Lee',
author_email='natlee.work@gmail.com',
description='A simple package to get system spec information',
keywords='system, information, spec, hardware, software, os, platform, cpu, memory, disk, network, cli, command, line, interface, tool, utility',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/natlee/system-info',
url='https://github.com/natlee/show-system-info',
project_urls={
'Documentation': 'https://github.com/natlee/system-info',
'Bug Reports': 'https://github.com/natlee/system-info/issues',
'Source Code': 'https://github.com/natlee/system-info'
'Documentation': 'https://github.com/natlee/show-system-info',
'Bug Reports': 'https://github.com/natlee/show-system-info/issues',
'Source Code': 'https://github.com/natlee/show-system-info'
},
package_dir={'': 'src'},
packages=setuptools.find_packages(where='src'),
Expand Down Expand Up @@ -44,7 +44,7 @@
},
entry_points={
'console_scripts': [
'systeminfo=systeminfo.cli:main'
'showsys=showsys.cli:main'
]
}
)
2 changes: 1 addition & 1 deletion src/showsys/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def cli(args):
traceback.print_exc()
print('==========================')
print('Please report this issue with the full traceback.')
print('-> https://github.com/NatLee/system-info/issues')
print('-> https://github.com/NatLee/show-system-info/issues')

def main():
"""
Expand Down

0 comments on commit de317e8

Please sign in to comment.