aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorNao Ueda <nao.uedder@gmail.com>2020-11-03 19:21:03 +0900
committerNao Ueda <nao.uedder@gmail.com>2020-11-03 19:21:03 +0900
commitd813bcb5b038e07db230813b084d24b6f1edc5ca (patch)
tree7b66b029ec4261c8cdebdd79592f65cbd495ec32 /setup.cfg
parentfc4fa1f514caa16c9baafbdbadd0d1fe855db636 (diff)
downloadppad-d813bcb5b038e07db230813b084d24b6f1edc5ca.tar.gz
ppad-d813bcb5b038e07db230813b084d24b6f1edc5ca.tar.bz2
ppad-d813bcb5b038e07db230813b084d24b6f1edc5ca.zip
change structure to distribute a package
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg27
1 files changed, 27 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..d0a6241
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,27 @@
+[metadata]
+name = ppad
+version = 0.0.7
+url = https://github.com/nao0x2c6/ppad
+author = Nao Ueda
+author_email = nao.uedder@gmail.com
+license_file = LICENSE
+description = Papertrail log archives downloader
+long_description = file: README.md
+long_description_content_type = text/markdown
+keywords = papertrail
+classifiers =
+ License :: OSI Approved :: GNU General Public License v2 (GPLv2)
+ Programming Language :: Python :: 3.6
+
+[options]
+packages = find:
+install_requires =
+ progressbar2 >= 3
+ python-dateutil >= 2
+ pytz >= 2020
+ requests >= 2
+
+
+[options.entry_points]
+console_scripts =
+ ppad = ppad:main