Example #1
0
##############################################
# The MIT License (MIT)
# Copyright (c) 2017 Kevin Walchko
# see LICENSE for full details
##############################################

from setuptools import setup
from build_utils import BuildCommand
from build_utils import PublishCommand
from build_utils import BinaryDistribution
from build_utils import get_pkg_version

VERSION = get_pkg_version('ins_nav/__init__.py')
PACKAGE_NAME = 'ins_nav'
BuildCommand.pkg = PACKAGE_NAME
BuildCommand.py2 = False
PublishCommand.pkg = PACKAGE_NAME
PublishCommand.version = VERSION

setup(
    author='Kevin Walchko',
    author_email='*****@*****.**',
    name=PACKAGE_NAME,
    version=VERSION,
    description='A library to do inertial navigation',
    long_description=open('readme.md').read(),
    long_description_content_type="text/markdown",
    url='http://github.com/MomsFriendlyRobotCompany/{}'.format(PACKAGE_NAME),
    classifiers=[
        'Development Status :: 4 - Beta', 'Intended Audience :: Developers',
        'License :: OSI Approved :: MIT License',
Example #2
0
##############################################
# The MIT License (MIT)
# Copyright (c) 2019 Kevin Walchko
# see LICENSE for full details
##############################################

from __future__ import print_function
from setuptools import setup

from build_utils import BuildCommand
from build_utils import PublishCommand
from build_utils import BinaryDistribution
from build_utils import SetGitTag
from build_utils import get_pkg_version

VERSION = get_pkg_version('mischief/__init__.py')
PACKAGE_NAME = 'mischief'
BuildCommand.pkg = PACKAGE_NAME
BuildCommand.py2 = False
BuildCommand.test = False
PublishCommand.pkg = PACKAGE_NAME
PublishCommand.version = VERSION
SetGitTag.version = VERSION

setup(
    author='Kevin Walchko',
    author_email='*****@*****.**',
    name=PACKAGE_NAME,
    version=VERSION,
    description='Another interface to haveibeenpawned.com',
    long_description=open('readme.md').read(),
Example #3
0
from __future__ import print_function
from setuptools import setup
# from nxp_imu import __version__ as VERSION
from build_utils import get_pkg_version
from build_utils import BuildCommand
from build_utils import PublishCommand
from build_utils import BinaryDistribution

VERSION = get_pkg_version('nxp_imu/__init__.py')
PACKAGE_NAME = 'nxp_imu'
BuildCommand.pkg = PACKAGE_NAME
BuildCommand.py2 = False  # not supporting python2 anymore
PublishCommand.pkg = PACKAGE_NAME
PublishCommand.version = VERSION

setup(
    author='Kevin Walchko',
    author_email='*****@*****.**',
    name=PACKAGE_NAME,
    version=VERSION,
    description='python library to use the Adafruit NXP 9-Dof IMU',
    long_description=open('../readme.md').read(),
    long_description_content_type='text/markdown',
    url='http://github.com/MomsFriendlyRobotCompany/{}'.format(PACKAGE_NAME),
    classifiers=[
        'Development Status :: 4 - Beta', 'Intended Audience :: Developers',
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
        'Programming Language :: Python :: 3.7',
        'Programming Language :: Python :: 3.6',
        'Topic :: Software Development :: Libraries',
Example #4
0
from __future__ import print_function
from setuptools import setup
# from build_utils import __version__ as VERSION
from build_utils import BuildCommand
from build_utils import PublishCommand
from build_utils import BinaryDistribution
from build_utils import SetGitTag
from build_utils import get_pkg_version

PACKAGE_NAME = 'build_utils'
VERSION = get_pkg_version('build_utils/__init__.py')
BuildCommand.pkg = PACKAGE_NAME
BuildCommand.test = False  # there are no tests
PublishCommand.pkg = PACKAGE_NAME
PublishCommand.version = VERSION
SetGitTag.version = VERSION
README = open('readme.md').read()

setup(
    name=PACKAGE_NAME,
    version=VERSION,
    author="Kevin Walchko",
    keywords=['framework', 'python2', 'python3'],
    author_email="*****@*****.**",
    description="Some tools to help build python2/3 source and wheel libraries",
    license="MIT",
    classifiers=[
        'Development Status :: 4 - Beta',
        'License :: OSI Approved :: MIT License',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3.6', 'Operating System :: Unix',
Example #5
0
from __future__ import print_function
from setuptools import setup
# from opencvutils.version import __version__ as VERSION
from build_utils import BuildCommand
from build_utils import PublishCommand
from build_utils import BinaryDistribution
from build_utils import SetGitTag
from build_utils import get_pkg_version


VERSION = get_pkg_version('opencvutils/__init__.py')
PACKAGE_NAME = 'opencvutils'
BuildCommand.pkg = PACKAGE_NAME
PublishCommand.pkg = PACKAGE_NAME
PublishCommand.version = VERSION
SetGitTag.version = VERSION


setup(
    name=PACKAGE_NAME,
    packages=[PACKAGE_NAME],
    version=VERSION,
    description='Simple OpenCV 3.x image processing functions',
    author='Kevin J. Walchko',
    long_description=open('readme.md').read(),
    long_description_content_type='text/markdown',
    author_email='*****@*****.**',
    url='https://github.com/MomsFriendlyRobotCompany/{}'.format(PACKAGE_NAME),
    keywords=['computer vision', 'image processing', 'opencv'],
    classifiers=[
        'Development Status :: 4 - Beta',
Example #6
0
from __future__ import print_function
from setuptools import setup
from build_utils import BuildCommand
from build_utils import PublishCommand
from build_utils import BinaryDistribution
from build_utils import SetGitTag
from build_utils import get_pkg_version

# ver = {}
# with open("pygecko/version.py") as fp:
#     exec(fp.read(), ver)
# VERSION = ver['__version__']

VERSION = get_pkg_version('pygecko/__init__.py')

PACKAGE_NAME = 'pygecko'
BuildCommand.pkg = PACKAGE_NAME
BuildCommand.py2 = False  # not supporting python2 anymore
# BuildCommand.test = False  # don't do tests
PublishCommand.pkg = PACKAGE_NAME
PublishCommand.version = VERSION
SetGitTag.version = VERSION
README = open('readme.md').read()

setup(
    name=PACKAGE_NAME,
    version=VERSION,
    author="Kevin Walchko",
    keywords=['framework', 'robotic', 'robot', 'vision', 'ros', 'distributed'],
    author_email="*****@*****.**",
    description="A python robotic framework and tools",
Example #7
0
from __future__ import print_function
from setuptools import setup
# from ar_markers.version import __version__ as VERSION
from build_utils import BuildCommand
from build_utils import PublishCommand
from build_utils import BinaryDistribution
from build_utils import SetGitTag
from build_utils import get_pkg_version

VERSION = get_pkg_version('ar_markers/__init__.py')
PACKAGE_NAME = 'ar_markers'
BuildCommand.pkg = PACKAGE_NAME
PublishCommand.pkg = PACKAGE_NAME
PublishCommand.version = VERSION
SetGitTag.version = VERSION
README = open('readme.rst').read()

setup(
    name=PACKAGE_NAME,
    version=VERSION,
    author="Kevin Walchko",
    keywords=['framework', 'robotic', 'marker', 'vision', 'ar marker', 'ar'],
    author_email="*****@*****.**",
    description="A python robotic framework and tools",
    license="BSD",
    classifiers=[
        'Development Status :: 4 - Beta',
        'License :: OSI Approved :: BSD License',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3.7', 'Operating System :: Unix',
        'Operating System :: POSIX :: Linux',
Example #8
0
# Copyright (c) 2016 Kevin Walchko
# see LICENSE for full details
##############################################

from __future__ import print_function
from setuptools import setup
# from pyservos import __version__ as VERSION
from build_utils import BuildCommand
from build_utils import PublishCommand
from build_utils import BinaryDistribution
from build_utils import SetGitTag
from build_utils import get_pkg_version


PACKAGE_NAME = 'pyservos'
VERSION = get_pkg_version('pyservos/__init__.py')
BuildCommand.pkg = PACKAGE_NAME
BuildCommand.py2 = False  # not supporting python2 anymore
PublishCommand.pkg = PACKAGE_NAME
PublishCommand.version = VERSION
SetGitTag.version = VERSION


setup(
    author='Kevin Walchko',
    author_email='*****@*****.**',
    name=PACKAGE_NAME,
    version=VERSION,
    description='A library to control dynamixel AX-12 and XL-320 servos with python',
    long_description=open('readme.md').read(),
    url='http://github.com/walchko/{}'.format(PACKAGE_NAME),
Example #9
0
##############################################
# The MIT License (MIT)
# Copyright (c) 2017 Kevin Walchko
# see LICENSE for full details
##############################################

from __future__ import print_function
from setuptools import setup
# from pycreate2.version import __version__ as VERSION
from build_utils import get_pkg_version
from build_utils import BuildCommand
from build_utils import PublishCommand
from build_utils import BinaryDistribution

VERSION = get_pkg_version('pycreate2/__init__.py')
PACKAGE_NAME = 'pycreate2'
BuildCommand.pkg = PACKAGE_NAME
BuildCommand.py2 = False
PublishCommand.pkg = PACKAGE_NAME
PublishCommand.version = VERSION


setup(
    author='Kevin Walchko',
    author_email='*****@*****.**',
    name=PACKAGE_NAME,
    version=VERSION,
    description='A library to control iRobot Create 2 with python',
    long_description=open('README.rst').read(),
    url='http://github.com/walchko/{}'.format(PACKAGE_NAME),
    classifiers=[