buildbot-transifex/setup.py

39 lines
1.1 KiB
Python
Raw Permalink Normal View History

#!/usr/bin/env python
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
2023-01-02 15:00:09 +00:00
VERSION = "0.1"
2019-03-11 00:36:11 +00:00
2023-01-02 15:00:09 +00:00
setup(name='buildbot-transifex',
2019-03-11 00:36:11 +00:00
version=VERSION,
2023-01-02 15:00:09 +00:00
description='buildbot plugin for integration with transifex.',
author='',
author_email='',
url='',
long_description='Transifex webhook',
long_description_content_type="text/markdown",
2023-01-02 15:00:09 +00:00
packages=['buildbot_transifex'],
2021-03-09 19:42:36 +00:00
install_requires=[
"buildbot>=3.0.0"
2018-09-05 09:47:58 +00:00
],
entry_points={
2018-09-05 09:47:58 +00:00
"buildbot.webhooks": [
2023-01-02 15:00:09 +00:00
"transifex = buildbot_transifex.webhook:transifex"
2018-09-05 09:47:58 +00:00
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Build Tools",
]
)