Files
Pol Henarejos 98f8eb2af8 More fixes.
Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
2025-11-20 20:10:50 +01:00

88 lines
2.9 KiB
Python

# -*- coding: utf-8 -*-
"""
/*
* This file is part of the pypicoboot distribution (https://github.com/polhenarejos/pypicoboot).
* Copyright (c) 2025 Pol Henarejos.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, version 3.
*
* 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
* Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
"""
from setuptools import setup
from setuptools import find_packages
import re, sys
VERSIONFILE = 'picoboot/_version.py'
verstrline = open(VERSIONFILE, 'rt').read()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
mo = re.search(VSRE, verstrline, re.M)
if mo:
version = mo.group(1)
else:
raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))
INSTALL_REQUIRES = [
'setuptools',
'pyusb'
]
if sys.platform.startswith('win32'):
INSTALL_REQUIRES.append("pywin32")
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name='pypicoboot',
packages=['picoboot','picoboot/core','picoboot/tools'],
version=version,
description='Pico Boot for Python',
license='AGPL',
license_files='LICENSE',
author="Pol Henarejos",
author_email='pol.henarejos@cttc.es',
url='https://github.com/polhenarejos/pypicoboot',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Security',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
install_requires=INSTALL_REQUIRES,
include_package_data=True,
entry_points={
'console_scripts': [
],
},
)