forked from xenserver/planex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 749 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
python-setuptools definition for planex
"""
from setuptools import setup
setup(name='planex',
version='0.7.2',
packages=['planex'],
include_package_data=True,
package_data={'planex': ['Makefile.rules']},
data_files=[('/usr/share/planex', ['planex/Makefile.rules']),
('/etc/bash_completion.d/', ['planex/planex.bash'])],
entry_points={
'console_scripts': [
'planex-init = planex.init:main',
'planex-cache = planex.cache:_main',
'planex-fetch = planex.fetch:_main',
'planex-pin = planex.pin:_main',
'planex-makedeb = planex.makedeb:main',
'planex-depend = planex.depend:main'
]
})