| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | |
|---|
| 3 | from setuptools import setup, find_packages |
|---|
| 4 | from pompilop import __version__ |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | setup( |
|---|
| 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 | """ |
|---|
| 17 | Xilica 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.