8451dcbbc7
In order to run PEP8-compliance tests using PBR, the setup.py, setup.cfg, requirements.txt, and tox.ini files must exist in the base directory of this project. These files have been created and specified accordingly. The specific environments to be tested using tox are specified in requirements.txt and include the py33 and pep8 environments. Package requirements are specified in requirements.txt and include pyyaml and icalendar. Additional package requirements for testing are specified in test-requirements.txt and include pbr and hacking. Existing Python source code has been modified to pass PEP8-compliance checks. This included adding docstrings and limiting line length. Lastly, the README file has been renamed and files have been added for the project license and manifest. Change-Id: I51a50d64c579212c5c7fa756bb1d34e774666be9
8 lines
102 B
Python
Executable File
8 lines
102 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import setuptools
|
|
|
|
setuptools.setup(
|
|
setup_requires=['pbr'],
|
|
pbr=True)
|