diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-07-14 22:27:40 +0200 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-07-14 22:27:40 +0200 |
commit | e258f08abd2455cc6b58841664d92d75d93c0933 (patch) | |
tree | 097851ff01dc02e05745dc18af4a227608d991ce /setup.py | |
parent | 128d9429fab830dad69243cbf9e6b6af5c3ed258 (diff) |
README, setup.py and manpage
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 26 |
1 files changed, 26 insertions, 0 deletions
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', + ] +) |