-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·38 lines (34 loc) · 1.07 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def find_files(in_dir):
return [os.path.join(in_dir, f) for f in os.listdir(in_dir)]
setup(
name = 'prspy',
version = '0.1',
description = 'GitHub pull request monitor',
author = 'Michael Stead',
author_email = 'michael.stead@gmail.com',
url = 'bugsquat.net',
license = 'GPLLv2+',
package_dir={
'prspy':'src/prspy',
},
packages=find_packages('src'),
include_package_data=True,
data_files=[('prspy/gui/data', find_files("src/prspy/gui/data")),
('prspy/gui/img', find_files('src/prspy/gui/img')),
('/usr/share/applications', find_files("desktop")),
('/usr/share/icons/', ['prspy.png'])],
scripts = [
'bin/prspy',
],
classifiers=[
'License :: OSI Approved :: GNU General Public License (GPL)',
'Development Status :: 0.1',
'Environment :: GUI',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Programming Language :: Python'
],
)