-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 940 Bytes
/
setup.py
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
import os
import setuptools
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setuptools.setup(
name='bbpp',
version='0.0.4',
author='Sergio Pena',
author_email='isergiopena@gmail.com',
description=(
'Monitor bitbucket pipelines and notify on any status change'
),
license='BSD',
keywords='bitbucket monitor macos notify',
url='https://www.github.com/sergiopena/bbpp',
packages=setuptools.find_packages(),
package_data={'bbpp': ['assets/audio/*.wav']},
include_package_data=True,
long_description=read('README.md'),
long_description_content_type='text/markdown',
entry_points={'console_scripts': ['bbpp = bbpp:main']},
install_requires=['httpx==0.24.1', 'notify-py==0.3.42'],
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Utilities',
'License :: OSI Approved :: BSD License',
],
)