-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·41 lines (33 loc) · 1.06 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
39
40
41
#!/usr/bin/env python3
"""Bolt Linux build sandbox management utility"""
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
VERSION = os.environ.get("BUILD_BOX_VERSION", "0.0.0")
setup(
name='build-box-utils',
version=VERSION,
url='https://github.com/boltlinux/build-box-utils',
author='Tobias Koch',
author_email='[email protected]',
license='MIT',
packages=[
'boltlinux.buildbox',
'boltlinux.buildbox.misc',
],
package_dir={'': 'lib'},
data_files=[
('/usr/bin', ['bin/build-box']),
],
platforms=['Linux'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
keywords='Bolt Linux cross-compile bootstrap',
description='Bolt Linux build sandbox management utility',
long_description='Bolt Linux build sandbox management utility',
)