From e258f08abd2455cc6b58841664d92d75d93c0933 Mon Sep 17 00:00:00 2001 From: Elena ``of Valhalla'' Grandi Date: Fri, 14 Jul 2017 22:27:40 +0200 Subject: README, setup.py and manpage --- setup.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..14d73cc --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python3 + +from setuptools import setup + +setup( + name='debdate', + version='0.20170714', + scripts=['debdate'], + install_requires=[ + 'python-dateutil', + ], + author="Elena ``of Valhalla'' Grandi", + author_email="valhalla@trueelena.org", + description='Convert Gregorian dates to Debian Regnal dates', + url='http://git.trueelena.org/cgit.cgi/software/debdate/about/', + license='WTFPLv2', + classifiers=[ + 'Development Status :: 4 - Beta', + 'Environment :: Console', + 'Intended Audience :: End Users/Desktop', + 'License :: DFSG approved', + 'Programming Language :: Python :: 3 :: Only', + 'Topic :: Religion', + 'Topic :: Utilities', + ] +) -- cgit v1.2.3