-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (27 loc) · 1.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""Setup script for argunparse package."""
import boilerplates.setup
class Package(boilerplates.setup.Package):
"""Package metadata."""
name = 'argunparse'
description = 'Reversed argparse: generate string of command-line args from Python objects.'
url = 'https://github.com/mbdevpl/argunparse'
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'Typing :: Typed']
keywords = ['argparse', 'commandline arguments', 'pretty printing', 'unparsing']
if __name__ == '__main__':
Package.setup()