Mercurial > sat_tmp
annotate setup.py @ 54:1984ffd0e5cc 0.7.0a2
0.7.0a2 release
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 08 Jul 2018 18:26:12 +0200 |
parents | 877f0053d664 |
children | cdeda6294bfc |
rev | line source |
---|---|
45
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
1 #!/usr/bin/env python2 |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
2 # -*- coding: utf-8 -*- |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
3 |
48
0a2d12d4ffd6
setup.py: use a minor version for first release
Goffi <goffi@goffi.org>
parents:
45
diff
changeset
|
4 # SàT tmp: repository to store temporary patches for third party software |
45
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
5 # Copyright (C) 2017 Arnaud Joset (info@agayon.be) |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
6 # Copyright (C) 2009-2017 Jérôme Poisson (goffi@goffi.org) |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
7 # Copyright (C) 2013-2016 Adrien Cossa (souliane@mailoo.org) |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
8 |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
9 # This program is free software: you can redistribute it and/or modify |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
10 # it under the terms of the GNU Affero General Public License as published by |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
11 # the Free Software Foundation, either version 3 of the License, or |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
12 # (at your option) any later version. |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
13 |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
14 # This program is distributed in the hope that it will be useful, |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
17 # GNU Affero General Public License for more details. |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
18 |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
19 # You should have received a copy of the GNU Affero General Public License |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
20 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
21 |
49 | 22 import os |
23 from setuptools import setup | |
45
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
24 |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
25 |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
26 NAME = 'sat_tmp' |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
27 |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
28 |
49 | 29 setup( |
45
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
30 name=NAME, |
54 | 31 version='0.7.0a2', |
50 | 32 description=u'Salut à Toi temporary third party patches', |
53
877f0053d664
install (setup.py): don't use sys.prefix for doc
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
33 long_description=(u'This module is used by Salut à Toi project to patch third party ' |
877f0053d664
install (setup.py): don't use sys.prefix for doc
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
34 u'modules when the patches are not yet available upstream. Patches ' |
877f0053d664
install (setup.py): don't use sys.prefix for doc
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
35 u'are removed from this module once merged upstream.'), |
45
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
36 author='Association « Salut à Toi »', |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
37 author_email='contact@salut-a-toi.org', |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
38 url='https://salut-a-toi.org', |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
39 classifiers=['Development Status :: 3 - Alpha', |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
40 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
41 'Operating System :: POSIX :: Linux', |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
42 'Topic :: Communications :: Chat'], |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
43 install_requires=['wokkel >= 0.7.1'], |
52 | 44 packages=['sat_tmp', 'sat_tmp.wokkel', 'sat_tmp.wokkel.test'], |
53
877f0053d664
install (setup.py): don't use sys.prefix for doc
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
45 data_files=[(os.path.join('share/doc', NAME), |
49 | 46 ['README', 'COPYING'])], |
45
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
47 ) |