buildbot-transifex/setup.py

39 lines
1.1 KiB
Python
Raw 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 16:00:09 +01:00
VERSION = "0.1"
2019-03-11 01:36:11 +01:00
2023-01-02 16:00:09 +01:00
setup(name='buildbot-transifex',
2019-03-11 01:36:11 +01:00
version=VERSION,
2023-01-02 16:00:09 +01: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 16:00:09 +01:00
packages=['buildbot_transifex'],
2021-03-09 20:42:36 +01:00
install_requires=[
"buildbot>=3.0.0"
2018-09-05 11:47:58 +02:00
],
entry_points={
2018-09-05 11:47:58 +02:00
"buildbot.webhooks": [
2023-01-02 16:00:09 +01:00
"transifex = buildbot_transifex.webhook:transifex"
2018-09-05 11:47:58 +02: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",
]
)