setup.py (1551B)
1 #!/usr/bin/env python3 2 """ 3 This file is part of Ascension. 4 Copyright (C) 2019 GNUnet e.V. 5 6 Ascension is free software: you can redistribute it and/or modify it 7 under the terms of the GNU Affero General Public License as published 8 by the Free Software Foundation, either version 3 of the License, 9 or (at your option) any later version. 10 11 Ascension is distributed in the hope that it will be useful, but 12 WITHOUT ANY WARRANTY; without even the implied warranty of 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 Affero General Public License for more details. 15 16 You should have received a copy of the GNU Affero General Public License 17 along with this program. If not, see <http://www.gnu.org/licenses/>. 18 19 SPDX-License-Identifier: AGPL3.0-or-later 20 21 Author rexxnor 22 """ 23 24 import setuptools 25 26 with open("README", "r") as fh: 27 long_description = fh.read() 28 29 setuptools.setup( 30 name="ascension", 31 version="0.5.0", 32 author="rexxnor", 33 author_email="rexxnor+gnunet@brief.li", 34 description="Tool to migrate DNS Zones to the GNU Name System", 35 long_description=long_description, 36 url="https://gnunet.org/git/ascension.git/", 37 packages=['ascension'], 38 data_files=[('man/man1', ['ascension.1'])], 39 classifiers=[ 40 "Programming Language :: Python :: 3", 41 ], 42 entry_points={ 43 'console_scripts': [ 44 'ascension=ascension.ascension:main', 45 ], 46 }, 47 install_requires=[ 48 'coverage', 49 'dnspython', 50 'docopt', 51 'mock', 52 'pbr', 53 'six', 54 ], 55 )