-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·155 lines (144 loc) · 4.59 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#!/usr/bin/env python3
# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4 -*-
#
# Copyright (C) 2015-2017 Canonical Ltd
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import codecs
import os
import re
import sys
# Common distribution data
name = 'snapcraft'
version = 'devel'
description = 'Easily craft snaps from multiple sources'
author_email = 'snapcraft@lists.snapcraft.io'
url = 'https://github.com/snapcore/snapcraft'
packages = [
'snapcraft',
'snapcraft.cli',
'snapcraft.extractors',
'snapcraft.integrations',
'snapcraft.internal',
'snapcraft.internal.cache',
'snapcraft.internal.deltas',
'snapcraft.internal.lifecycle',
'snapcraft.internal.lxd',
'snapcraft.internal.meta',
'snapcraft.internal.pluginhandler',
'snapcraft.internal.project_loader',
'snapcraft.internal.project_loader.grammar',
'snapcraft.internal.project_loader.grammar_processing',
'snapcraft.internal.repo',
'snapcraft.internal.sources',
'snapcraft.internal.states',
'snapcraft.plugins',
'snapcraft.plugins._ros',
'snapcraft.plugins._python',
'snapcraft.storeapi'
]
package_data = {'snapcraft.internal.repo': ['manifest.txt']}
license = 'GPL v3'
classifiers = (
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Build Tools',
'Topic :: System :: Software Distribution',
)
# look/set what version we have
changelog = 'debian/changelog'
if os.path.exists(changelog):
head = codecs.open(changelog, encoding='utf-8').readline()
match = re.compile('.*\((.*)\).*').match(head)
if match:
version = match.group(1)
# If on Windows, construct an exe distribution
if sys.platform == 'win32':
from cx_Freeze import setup, Executable
# cx_Freeze relevant options
build_exe_options = {
# Explicitly add any missed packages that are not found at runtime
'packages': [
'pkg_resources',
'pymacaroons',
'click',
'responses',
'configparser',
'docopt',
'cffi',
],
# Explicit inclusion data, which is then clobbered.
'include_files': [
('libraries', os.path.join('share', 'snapcraft', 'libraries')),
('schema', os.path.join('share', 'snapcraft', 'schema')),
],
}
exe = Executable(
script='bin/snapcraft',
base=None # console subsystem
)
setup(
name=name,
version=version,
description=description,
author_email=author_email,
url=url,
packages=packages,
package_data=package_data,
license=license,
classifiers=classifiers,
# cx_Freeze-specific arguments
options={'build_exe': build_exe_options},
executables=[exe],
)
# On other platforms, continue as normal
else:
from setuptools import setup
setup(
name=name,
version=version,
description=description,
author_email=author_email,
url=url,
packages=packages,
package_data=package_data,
license=license,
classifiers=classifiers,
# non-cx_Freeze arguments
entry_points={
'console_scripts': [
'snapcraft = snapcraft.cli.__main__:run',
'snapcraft-parser = snapcraft.internal.parser:main',
],
},
data_files=[
('share/snapcraft/schema',
['schema/' + x for x in os.listdir('schema')]),
('share/snapcraft/libraries',
['libraries/' + x for x in os.listdir('libraries')]),
],
install_requires=[
'pysha3',
'pyxdg',
'requests',
'libarchive-c',
],
test_suite='snapcraft.tests.unit',
)