File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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!
Original file line number Diff line number Diff line change 1+ import pathlib
2+
13import setuptools
24
35setuptools .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)
You can’t perform that action at this time.
0 commit comments