-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (34 loc) · 1012 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
33
34
35
36
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='ales.zoulek@gmail.com',
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,
)