File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ build: clean cythonize
3636python setup.py build_ext --inplace
3737
3838install : uninstall clean cythonize
39- pip install .  -v 
39+ pip install -ve  . 
4040
4141uninstall :
4242- pip uninstall -y -q dependency-injector 2>  /dev/null
Original file line number Diff line number Diff line change 88
99# Defining setup variables: 
1010defined_macros  =  list ()
11- package_data  =  dict ([('dependency_injector' , ['*.pxd' ])])
1211
1312# Getting description: 
1413with  open ('README.rst' ) as  readme_file :
2726 defined_macros .append (('CYTHON_TRACE' , 1 ))
2827 defined_macros .append (('CYTHON_TRACE_NOGIL' , 1 ))
2928
30-  package_data ['dependency_injector' ].append ('*.pyx' )
31-  package_data ['dependency_injector' ].append ('*.c' )
32- 
3329
3430setup (name = 'dependency-injector' ,
3531 version = version ,
5551 define_macros = defined_macros ,
5652 extra_compile_args = ['-O2' ]),
5753 ],
58-  package_data = package_data ,
54+  package_data = {
55+  'dependency_injector' : ['*.pxd' ],
56+  },
5957 zip_safe = True ,
6058 license = 'BSD New' ,
6159 platforms = ['any' ],
Original file line number Diff line number Diff line change @@ -9,8 +9,9 @@ commands=
99 unit2 discover tests/unit
1010
1111[testenv:coveralls] 
12- basepython =python3.5
1312passenv =TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH DEPENDENCY_INJECTOR_DEBUG_MODE
13+ basepython =python3.5
14+ usedevelop =True
1415deps =
1516 {[testenv]deps}
1617 cython
1920commands =
2021 coverage erase
2122 coverage run --rcfile =./.coveragerc -m unittest2 discover tests/unit
23+  coverage report --rcfile =./.coveragerc
2224 coveralls
2325
2426[testenv:pylint] 
                         You can’t perform that action at this time. 
           
                  
0 commit comments