Mercurial > sat_tmp
comparison setup.py @ 48:0a2d12d4ffd6
setup.py: use a minor version for first release
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 02 Apr 2018 10:34:43 +0200 |
parents | c8cb4e867897 |
children | c09d4ce9ad52 |
comparison
equal
deleted
inserted
replaced
47:80fd409ddc91 | 48:0a2d12d4ffd6 |
---|---|
1 #!/usr/bin/env python2 | 1 #!/usr/bin/env python2 |
2 # -*- coding: utf-8 -*- | 2 # -*- coding: utf-8 -*- |
3 | 3 |
4 # SàT tmp: repository to store temporarily patches to third party software | 4 # SàT tmp: repository to store temporary patches for third party software |
5 # until they are merged upstream | |
6 # Copyright (C) 2017 Arnaud Joset (info@agayon.be) | 5 # Copyright (C) 2017 Arnaud Joset (info@agayon.be) |
7 # Copyright (C) 2009-2017 Jérôme Poisson (goffi@goffi.org) | 6 # Copyright (C) 2009-2017 Jérôme Poisson (goffi@goffi.org) |
8 # Copyright (C) 2013-2016 Adrien Cossa (souliane@mailoo.org) | 7 # Copyright (C) 2013-2016 Adrien Cossa (souliane@mailoo.org) |
9 | 8 |
10 # This program is free software: you can redistribute it and/or modify | 9 # This program is free software: you can redistribute it and/or modify |
36 def create_package_list(base_package): | 35 def create_package_list(base_package): |
37 return ([base_package] + [base_package + '.' + pkg for pkg in find_packages(base_package)]) | 36 return ([base_package] + [base_package + '.' + pkg for pkg in find_packages(base_package)]) |
38 | 37 |
39 setup_info = dict( | 38 setup_info = dict( |
40 name=NAME, | 39 name=NAME, |
41 version='0.7', | 40 version='0.0.1', |
42 author='Association « Salut à Toi »', | 41 author='Association « Salut à Toi »', |
43 author_email='contact@salut-a-toi.org', | 42 author_email='contact@salut-a-toi.org', |
44 url='https://salut-a-toi.org', | 43 url='https://salut-a-toi.org', |
45 classifiers=['Development Status :: 3 - Alpha', | 44 classifiers=['Development Status :: 3 - Alpha', |
46 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', | 45 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', |