Skip to content

Commit f2c98ab

Browse files
committed
chore: release v0.1.0
1 parent a7c0d83 commit f2c98ab

2 files changed

Lines changed: 23 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a
5+
Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to
6+
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
9+
## 0.1.0 - 2021-11-23
10+
### Added
11+
- First release!

setup.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
1+
import pathlib
2+
13
import setuptools
24

35
setuptools.setup(
46
name='argparse-subdec',
5-
version='0.0.0',
7+
version='0.1.0',
8+
long_description=(pathlib.Path(__file__).parent / 'README.rst').read_text(),
9+
long_description_content_type='text/x-rst',
10+
url='https://github.com/guludo/python-argparse-subdec',
611
packages=['argparse_subdec'],
712
extras_require={
813
'tests': [
914
'pytest~=6.2',
1015
'coverage~=5.5',
1116
],
1217
},
18+
classifiers=[
19+
'Development Status :: 4 - Beta',
20+
'Intended Audience :: Developers',
21+
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
22+
'Programming Language :: Python :: 3',
23+
],
1324
)

0 commit comments

Comments
 (0)