Mercurial > sat_tmp
annotate setup.py @ 52:2068cf3009da 0.0.3
fixed setup.py
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 04 Apr 2018 08:38:52 +0200 |
parents | d9b7fb0dead2 |
children | 877f0053d664 |
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 |
45
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
23 import sys |
49 | 24 from setuptools import setup |
45
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 |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
27 NAME = 'sat_tmp' |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
28 |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
29 |
49 | 30 setup( |
45
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
31 name=NAME, |
52 | 32 version='0.0.3', |
50 | 33 description=u'Salut à Toi temporary third party patches', |
34 long_description=u'This module is used by Salut à Toi project to patch third party modules when the patches are not yet available upstream. Patches are removed from this module once merged upstream.', | |
45
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
35 author='Association « Salut à Toi »', |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
36 author_email='contact@salut-a-toi.org', |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
37 url='https://salut-a-toi.org', |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
38 classifiers=['Development Status :: 3 - Alpha', |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
39 '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
|
40 'Operating System :: POSIX :: Linux', |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
41 'Topic :: Communications :: Chat'], |
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
42 install_requires=['wokkel >= 0.7.1'], |
52 | 43 packages=['sat_tmp', 'sat_tmp.wokkel', 'sat_tmp.wokkel.test'], |
49 | 44 data_files=[(os.path.join(sys.prefix, 'share/doc', NAME), |
45 ['README', 'COPYING'])], | |
45
c8cb4e867897
made proper package + installation
Arnaud Joset <info@agayon.be>
parents:
diff
changeset
|
46 ) |