-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·35 lines (29 loc) · 918 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
32
33
34
35
#!/usr/bin/env python3
import os
import sys
from glob import glob
from setuptools import setup
setup(
name='lxcraft',
version='0.3',
author_email='[email protected]',
license='GPLv3',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 1 - Planning
# 2 - Pre-Alpha
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
],
data_files=[
('/etc/bash_completion.d', ['lxcraft.completion']),
('share/lxcraft', ['lxcraft_gen_container_env.py', 'lxcraft.completion', 'lxcraft_process_folder.py']),
],
scripts=['lxcraft.py'],
)