-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
47 lines (39 loc) · 1.61 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
40
41
42
43
44
45
46
47
#!/usr/bin/env python
from os import getenv
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
def version():
return getenv('BUILD_VERSION', "2.1.0")
setup(name='BuildNotify',
version=version(),
description='Cruise Control build monitor for Windows/Linux/Mac',
keywords='cctray ccmenu buildnotify ubuntu linux cruisecontrol continuous integration ci',
author='Anay Nayak',
install_requires=['pytz', 'PyQt5==5.15.9', 'python-dateutil', 'requests'],
author_email='[email protected]',
url="https://anaynayak.github.io/buildnotify/",
license='GPL v3',
long_description=readme(),
packages=['buildnotifylib', 'buildnotifylib.core',
'buildnotifylib.generated'],
package_dir={'buildnotifylib': 'buildnotifylib'},
data_files=[
('share/applications', ['buildnotify.desktop']),
('share/pixmaps', ['buildnotify.svg']),
],
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Software Development',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Environment :: X11 Applications :: Qt',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: User Interfaces',
'Topic :: Software Development :: Widget Sets'
],
scripts=['buildnotifyapplet.py'])