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 34 35 36
|
from setuptools import setup, find_packages
version = '2.5.1'
setup(
name='tasklib',
version=version,
description='Official Taskwarrior library for Python',
long_description=open('README.rst').read(),
author='GothenburgBitFactory',
author_email='support@gothenburgbitfactory.org',
license='BSD',
url='https://github.com/GothenburgBitFactory/tasklib',
download_url='https://github.com/GothenburgBitFactory/tasklib/downloads',
packages=find_packages(),
include_package_data=True,
test_suite='tasklib.tests',
install_requires=['backports.zoneinfo;python_version<"3.9"'],
classifiers=[
'Development Status :: 6 - Mature',
'Programming Language :: Python',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent'
],
)
|