source: pompilop/setup.py @ 9d933f34d0845a0e2174fb91c2fc7809c83c0bdc

Revision 9d933f34d0845a0e2174fb91c2fc7809c83c0bdc, 595 bytes checked in by Luper Rouch <flupke@…>, 2 years ago (diff)

pompilop: made a command line tool

  • Property mode set to 100755
Line 
1#!/usr/bin/env python
2
3from setuptools import setup, find_packages
4from pompilop import __version__
5
6
7setup(
8    name = "pompilop",
9    version = __version__,
10    author = "Luper Rouch",
11    author_email = "luper.rouch@gmail.com",
12    maintainer = "Luper Rouch",
13    maintainer_email = "luper.rouch@gmail.com",
14    description = "Utilities to control Xilica processors.",
15    long_description = 
16"""
17Xilica processors offer blablablabl
18""",
19    setup_requires = ["nose"],
20    install_requires = ["pyserial"],
21    scripts = ["pompilop/bin/pompicontrol.py"],
22    packages = find_packages("."),
23)
24
Note: See TracBrowser for help on using the repository browser.