We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4b9010 commit 4a2926eCopy full SHA for 4a2926e
.travis.yml
@@ -5,6 +5,7 @@ install:
5
- pip install -r requirements.txt
6
script:
7
- cd final_task
8
+ - pip install .
9
- coverage run -m unittest discover
10
- pycodestyle --max-line-length=120 .
11
- python ./../pycalc_checker.py
final_task/setup.py
@@ -0,0 +1,11 @@
1
+from setuptools import setup, find_packages
2
+
3
+setup(
4
+ name='pycalc',
+ version='0.1',
+ author='Elena Volkova',
+ author_email='[email protected]',
+ description='Python command-line calculator',
+ packages=find_packages(),
+ scripts=['pycalc']
+)
pycalc_checker.py
@@ -5,7 +5,7 @@
from termcolor import colored
-PYCALC_UTIL_NAME = "./pycalc"
+PYCALC_UTIL_NAME = "pycalc"
RETURN_CODE = 0
0 commit comments