forked from andialbrecht/runsqlrun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 815 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
#!/usr/bin/env python3
import glob
from setuptools import setup, find_packages
import rsr.config
setup(
name=rsr.config.name,
version=rsr.config.version,
description=rsr.config.description,
author=rsr.config.author,
author_email=rsr.config.author_email,
url=rsr.config.url,
packages=find_packages(),
entry_points={
'console_scripts': ['runsqlrun=rsr.cmd:main'],
},
data_files=[
('share/runsqlrun/icons',
glob.glob('data/icons/*.svg')),
('share/icons/hicolor/scalable/apps',
glob.glob('data/icons/*.svg')),
('share/runsqlrun/themes',
glob.glob('data/themes/*.xml')),
('share/applications/',
['data/runsqlrun.desktop']),
('share/runsqlrun/',
['data/runsqlrun.gresource']),
]
)