forked from canonical/snapcraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·73 lines (68 loc) · 2.41 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
#!/usr/bin/env python3
# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4 -*-
#
# Copyright (C) 2015 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
from setuptools import setup
version = 'devel'
# 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)
setup(
name='snapcraft',
version=version,
description='Easily craft snaps from multiple sources',
author_email='[email protected]',
url='https://github.com/snapcore/snapcraft',
packages=['snapcraft',
'snapcraft.internal',
'snapcraft.internal.states',
'snapcraft.plugins',
'snapcraft.storeapi'],
package_data={'snapcraft.internal': ['manifest.txt']},
scripts=['bin/snapcraft', 'bin/snapcraft-parser'],
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=[
'pyxdg',
'requests',
'requests-oauthlib',
],
test_suite='snapcraft.tests',
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',
),
)