1 Star 0 Fork 10

evan886 / Ubuntu Tweak

forked from 图拉鼎 / Ubuntu Tweak 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
图拉鼎 提交于 2012-04-25 23:17 . Do not build lens
import glob
from setuptools import setup, find_packages
from ubuntutweak import __version__
setup(name='ubuntu-tweak',
version=__version__,
description='magic tool to configure Ubuntu',
author='TualatriX',
author_email='tualatrix@gmail.com',
url='http://ubuntu-tweak.com',
scripts=['ubuntu-tweak'],
packages=find_packages(exclude=['tests']),
data_files=[
('../etc/dbus-1/system.d/', ['data/ubuntu-tweak-daemon.conf']),
('share/dbus-1/system-services', ['data/com.ubuntu_tweak.daemon.service']),
('share/glib-2.0/schemas', ['data/com.ubuntu-tweak.tweak.gschema.xml']),
('share/ubuntu-tweak/ui/', glob.glob('data/ui/*.ui')),
('share/ubuntu-tweak/pixmaps/', glob.glob('data/pixmaps/*.png')),
('share/ubuntu-tweak/scripts/', glob.glob('data/scripts/*')),
('share/ubuntu-tweak/templates/', glob.glob('data/templates/*')),
('share/ubuntu-tweak/', ['data/script-worker', 'data/uturl', 'data/ubuntu-tweak-daemon']),
],
license='GNU GPL',
platforms='linux',
test_suite='tests',
)
1
https://gitee.com/evan886/Ubuntu-Tweak.git
git@gitee.com:evan886/Ubuntu-Tweak.git
evan886
Ubuntu-Tweak
Ubuntu Tweak
master

搜索帮助