prologix-gpib-ethernet/setup.py

42 lines
963 B
Python
Raw Permalink Normal View History

2016-08-19 14:08:37 +00:00
# -*- coding: utf-8 -*-
2017-09-29 18:08:26 +00:00
from setuptools import setup
2016-08-19 14:51:15 +00:00
import os
from plx_gpib_ethernet import __version__
2016-08-19 14:51:15 +00:00
current_path = os.path.dirname(os.path.abspath(__file__))
2016-08-19 14:08:37 +00:00
# Get the long description from the README file
2016-08-19 14:51:15 +00:00
with open(os.path.join(current_path, 'README.md')) as f:
2016-08-19 14:08:37 +00:00
long_description = f.read()
setup(
name='prologix-gpib-ethernet',
version=__version__,
2016-08-19 14:08:37 +00:00
description='Simple wrapper for the Prologix GPIB-to-Ethernet adapter.',
long_description=long_description,
url='https://github.com/nelsond/prologix-gpib-ethernet',
author='Nelson Darkwah Oppong',
author_email='n@darkwahoppong.com',
license='MIT',
classifiers=[
'Development Status :: 5 - Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 2.7',
],
keywords='gpib prologix',
packages=['plx_gpib_ethernet'],
2016-08-19 14:51:15 +00:00
install_requires=[],
2016-08-19 14:08:37 +00:00
)