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
|
#!/usr/bin/env python3
from setuptools import setup
setup(
name='debdate',
version='0.20210102',
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/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',
]
)
|