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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
from setuptools import setup, find_packages
version = '1.4.0'
f = open('bugwarrior/README.rst')
long_description = f.read().strip()
long_description = long_description.split('split here', 1)[1]
f.close()
setup(name='bugwarrior',
version=version,
description="Sync github, bitbucket, and trac issues with taskwarrior",
long_description=long_description,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Bug Tracking",
"Topic :: Utilities",
],
keywords='task taskwarrior todo github ',
author='Ralph Bean',
author_email='ralph.bean@gmail.com',
url='http://github.com/ralphbean/bugwarrior',
license='GPLv3+',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
"requests",
"offtrac",
"python-bugzilla",
"taskw >= 0.8",
"python-dateutil",
"pytz",
"six>=1.9.0",
"jinja2>=2.7.2",
"dogpile.cache>=0.5.3",
"lockfile>=0.9.1",
"click",
"future!=0.16.0",
],
extras_require=dict(
keyring=["keyring", "dbus-python"],
jira=["jira>=0.22"],
megaplan=["megaplan>=1.4"],
activecollab=["pypandoc", "pyac>=0.1.5"],
bts=["PySimpleSOAP","python-debianbts>=2.6.1"],
),
tests_require=[
"Mock",
"nose",
"responses",
"bugwarrior[jira]",
"bugwarrior[megaplan]",
"bugwarrior[activecollab]",
"bugwarrior[bts]",
],
test_suite='nose.collector',
entry_points="""
[console_scripts]
bugwarrior-pull = bugwarrior:pull
bugwarrior-vault = bugwarrior:vault
bugwarrior-uda = bugwarrior:uda
[bugwarrior.service]
github=bugwarrior.services.github:GithubService
gitlab=bugwarrior.services.gitlab:GitlabService
bitbucket=bugwarrior.services.bitbucket:BitbucketService
trac=bugwarrior.services.trac:TracService
bts=bugwarrior.services.bts:BTSService
bugzilla=bugwarrior.services.bz:BugzillaService
teamlab=bugwarrior.services.teamlab:TeamLabService
redmine=bugwarrior.services.redmine:RedMineService
activecollab2=bugwarrior.services.activecollab2:ActiveCollab2Service
activecollab=bugwarrior.services.activecollab:ActiveCollabService
jira=bugwarrior.services.jira:JiraService
megaplan=bugwarrior.services.megaplan:MegaplanService
phabricator=bugwarrior.services.phab:PhabricatorService
versionone=bugwarrior.services.versionone:VersionOneService
pagure=bugwarrior.services.pagure:PagureService
taiga=bugwarrior.services.taiga:TaigaService
gerrit=bugwarrior.services.gerrit:GerritService
trello=bugwarrior.services.trello:TrelloService
youtrack=bugwarrior.services.youtrack:YoutrackService
""",
)
|