wexpect-venv/setup.py

11 lines
167 B
Python
Raw Permalink Normal View History

2019-04-30 13:57:27 +00:00
#!/usr/bin/env python
2019-04-30 13:57:27 +00:00
from setuptools import setup
2019-04-30 09:38:49 +00:00
2019-04-30 13:57:27 +00:00
setup(
setup_requires=['pbr'],
pbr=True,
2019-05-02 08:08:28 +00:00
2019-05-03 11:09:36 +00:00
# packages=[''],
2019-05-02 08:08:28 +00:00
py_modules=['wexpect'],
)