File: setup.py

package info (click to toggle)
python-tasklib 2.5.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 240 kB
  • sloc: python: 2,257; makefile: 147
file content (36 lines) | stat: -rw-r--r-- 1,396 bytes parent folder | download
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'
    ],
)