File: setup.py

package info (click to toggle)
pynx584 0.8.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 260 kB
  • sloc: python: 1,772; makefile: 5; sh: 5
file content (15 lines) | stat: -rw-r--r-- 530 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from setuptools import setup

setup(name='pynx584',
      version='0.8.2',
      description='NX584/NX8E Interface Library and Server',
      author='Dan Smith',
      author_email='dsmith+nx584@danplanet.com',
      url='http://github.com/kk7ds/pynx584',
      packages=['nx584'],
      install_requires=['requests', 'stevedore', 'prettytable', 'pyserial', 'flask'],
      scripts=['nx584_server', 'nx584_client'],
      classifiers = [
            "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
      ]
  )