]> git.madduck.net Git - etc/taskwarrior.git/blob - setup.py

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

backends: Do not perform field deletion for new tasks
[etc/taskwarrior.git] / setup.py
1 from setuptools import setup, find_packages
2
3 install_requirements = ['six>=1.4', 'pytz', 'tzlocal']
4
5 version = '1.0.0'
6
7 try:
8     import importlib
9 except ImportError:
10     install_requirements.append('importlib')
11
12 setup(
13     name='tasklib',
14     version=version,
15     description='Python Task Warrior library',
16     long_description=open('README.rst').read(),
17     author='Rob Golding',
18     author_email='rob@robgolding.com',
19     license='BSD',
20     url='https://github.com/robgolding63/tasklib',
21     download_url='https://github.com/robgolding63/tasklib/downloads',
22     packages=find_packages(),
23     include_package_data=True,
24     test_suite='tasklib.tests',
25     install_requires=install_requirements,
26     classifiers=[
27         'Development Status :: 4 - Beta',
28         'Programming Language :: Python',
29         "Programming Language :: Python :: 2",
30         "Programming Language :: Python :: 2.6",
31         "Programming Language :: Python :: 2.7",
32         "Programming Language :: Python :: 3",
33         "Programming Language :: Python :: 3.2",
34         "Programming Language :: Python :: 3.3",
35         'License :: OSI Approved :: BSD License',
36         'Topic :: Software Development :: Libraries :: Python Modules',
37         'Intended Audience :: Developers',
38     ],
39 )