forked from aleszoulek/bbnotify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·40 lines (36 loc) · 1.05 KB
/
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
33
34
35
36
37
38
39
#!/usr/bin/env python
import os
from os import path
from setuptools import setup, find_packages
f = open(path.join(path.dirname(__file__), 'README.rst'))
long_description = f.read().strip()
f.close()
setup(
name='bbnotify',
version='0.3',
url = "http://github.com/aleszoulek/bbnotify",
description='Tray notification for BuildBot',
long_description=long_description,
author='Ales Zoulek',
author_email='[email protected]',
license='BSD',
keywords='buildbot tray notification'.split(),
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
packages=find_packages(),
entry_points = {
'console_scripts': [
'bbnotify = bbnotify:main',
],
},
include_package_data=True,
zip_safe = False,
test_suite = "tests.runtests.run_all",
)