Skip to content

Commit

Permalink
update metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
silvncr committed Jun 17, 2024
1 parent 6ba8aaf commit a4f101b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ simplifying args jargon
![status](https://img.shields.io/github/actions/workflow/status/silvncr/jarguments/python-publish.yml)
![downloads](https://img.shields.io/pypi/dm/jarguments)

![license](https://img.shields.io/github/license/silvncr/jarguments)
![format](https://img.shields.io/pypi/format/jarguments)
![pyversions](https://img.shields.io/pypi/pyversions/jarguments)

![repo-size](https://img.shields.io/github/repo-size/silvncr/jarguments)
![code-size](https://img.shields.io/github/languages/code-size/silvncr/jarguments)

## Summary

Provides a straightforward way to create command line arguments.
Expand Down
3 changes: 1 addition & 2 deletions jarguments/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
import parse


# metadata
__author__ = 'silvncr'
__license__ = 'MIT'
__module_name__ = 'jarguments'
__module__ = 'jarguments'
__version__ = '0.2.1'
16 changes: 4 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,27 +1,19 @@
'Setup script for the jarguments package.'

from pathlib import Path

from jarguments import (
__author__,
__doc__,
__license__,
__module_name__,
__version__,
)
from jarguments import __author__, __doc__, __license__, __module__, __version__
from setuptools import setup

setup(
name=__module_name__,
name=__module__,
version=__version__,
description=__doc__,
long_description=Path('README.md').read_text(),
long_description_content_type='text/markdown',
url=f'https://github.com/{__author__}/{__module_name__}',
url=f'https://github.com/{__author__}/{__module__}',
author=__author__,
include_package_data=True,
license=__license__,
packages=[__module_name__],
packages=[__module__],
package_data={},
setup_requires=['pytest_runner'],
python_requires='>=3.8',
Expand Down

0 comments on commit a4f101b

Please sign in to comment.